-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for data governance. On initialize, call the new setTagData
API to register the operators for data governance.
- Loading branch information
mkomor
committed
Oct 19, 2015
1 parent
4bf1872
commit b38621d
Showing
3 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
com.ibm.streamsx.hdfs/impl/java/src/com/ibm/streamsx/hdfs/IGovernanceConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package com.ibm.streamsx.hdfs; | ||
|
||
public interface IGovernanceConstants { | ||
public static final String TAG_OPERATOR_IGC = "OperatorIGC"; | ||
public static final String TAG_REGISTER_TYPE = "registerType"; | ||
public static final String TAG_REGISTER_TYPE_INPUT = "input"; | ||
public static final String TAG_REGISTER_TYPE_OUTPUT = "output"; | ||
|
||
|
||
public static final String ASSET_HDFS_FILE_TYPE = "$Streams-HDFSFile"; | ||
public static final String ASSET_HDFS_SERVER_TYPE = "$Streams-HDFSServer"; | ||
public static final String ASSET_HDFS_SERVER_TYPE_SHORT = "$HDFSServer"; | ||
|
||
public static final String PROPERTY_SRC_NAME = "srcName"; | ||
public static final String PROPERTY_SRC_TYPE = "srcType"; | ||
|
||
// public static final String PROPERTY_SRC_PARENT_PREFIX = "srcParentPrefix"; | ||
public static final String PROPERTY_SRC_PARENT_PREFIX = "srcParent"; | ||
public static final String PROPERTY_PARENT_TYPE = "parentType"; | ||
|
||
public static final String PROPERTY_PARENT_PREFIX = "p1"; | ||
public static final String PROPERTY_GRANDPARENT_PREFIX = "p2"; | ||
|
||
public static final String PROPERTY_INPUT_OPERATOR_TYPE = "inputOperatorType"; | ||
public static final String PROPERTY_OUTPUT_OPERATOR_TYPE = "outputOperatorType"; | ||
|
||
} |