use of com.hortonworks.streamline.streams.catalog.TopologyEditorMetadata in project streamline by hortonworks.
the class RestIntegrationTest method createTopologyEditorMetadata.
private TopologyEditorMetadata createTopologyEditorMetadata(Long topologyId, String info) {
TopologyEditorMetadata topologyEditorMetadata = new TopologyEditorMetadata();
topologyEditorMetadata.setTopologyId(topologyId);
topologyEditorMetadata.setData(info);
topologyEditorMetadata.setTimestamp(System.currentTimeMillis());
return topologyEditorMetadata;
}
Aggregations