private static void addStorage(
      org.apache.falcon.entity.v0.feed.Cluster cluster,
      Feed feed,
      Storage.TYPE storageType,
      String uriTemplate) {
    if (storageType == Storage.TYPE.FILESYSTEM) {
      Locations locations = new Locations();
      feed.setLocations(locations);

      Location location = new Location();
      location.setType(LocationType.DATA);
      location.setPath(uriTemplate);
      cluster.setLocations(new Locations());
      cluster.getLocations().getLocations().add(location);
    } else {
      CatalogTable table = new CatalogTable();
      table.setUri(uriTemplate);
      cluster.setTable(table);
    }
  }