Package | Description |
---|---|
com.ads.api.beans.sm |
Contains Collection Classes,Java Bean Classes which are specific to System, Environment,Table, Column and Node.
|
com.ads.api.util |
Contains Utility Classes, Collection Classes, Java Bean Classes which are specific to System, Environment, Table, Column, Mappings, Subject,
KeyValue Pairs etc...
|
Modifier and Type | Method and Description |
---|---|
SMTable |
SMTable.addExtendedProperty(KeyValue systemKeyValuesVo) |
SMTable |
SMTable.getParentTable() |
SMTable |
SMColumn.getTable()
Returns the SMTable object.
|
SMTable |
SMSchema.getTable(java.lang.String tableName)
Returns the DBTable Object for the specified TableType and tableName.
|
SMTable |
SMTable.setColumnIndexes(java.util.List<SMIndex> columnIndexes)
Method sets the list of columnIndexes as specified.
|
SMTable |
SMTable.setExtendedProperties(java.util.List<KeyValue> extendedProperties)
Method sets the list of KeyValue objects as specified.
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection<SMTable> |
SMSchema.getAllTables() |
java.util.Collection<SMTable> |
SMSchema.getEntities(SMTable.SMTableType type) |
java.util.Collection<SMTable> |
SMSchema.getSynonyms() |
java.util.Collection<SMTable> |
SMEnvironment.getTables()
Returns the list of SMTable objects.
|
java.util.Collection<SMTable> |
SMSchema.getTables() |
java.util.Collection<SMTable> |
SMSchema.getViews() |
Modifier and Type | Method and Description |
---|---|
void |
SMEnvironment.addTable(SMTable table)
Adds the table to the DBTable Object.
|
void |
SMSchema.addTable(SMTable table)
Adds Table as specified in DBTable Object.
|
void |
SMEnvironment.addTable(java.lang.String name,
SMTable table)
Adds the table to DBTable Object as specified in name.
|
void |
SMSchema.addTable(java.lang.String name,
SMTable table) |
void |
SMEnvironment.addTableByReferenceId(SMTable table) |
void |
SMTable.setParentTable(SMTable parentTable) |
void |
SMColumn.setTable(SMTable _table)
Method sets the _table as specified.
|
Modifier and Type | Method and Description |
---|---|
SMTable |
SystemManagerUtil.getTable(int tableId)
Returns SMTable object for the specified tableId.
|
SMTable |
SystemManagerUtil.getTable(int tableId,
int fillOptions)
Returns SMTable object for the specified tableId with fillOptions.
|
SMTable |
SystemManagerUtil.getTableByEnvironmentId(int environmentId,
java.lang.String tableName)
Returns SMTable object for the specified environmentId and tableName.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<SMTable> |
SystemManagerUtil.getEnvironmentTables(int environmentId)
Returns the List of tables for the specified environmentId.
|
java.util.Map<java.lang.String,java.util.Map<java.lang.String,java.util.List<SMTable>>> |
LineageUtil.getTables(APIConstants.EndPointType endPointType,
java.util.HashMap<java.lang.String,java.util.ArrayList<java.lang.String>> systemEnvironmentMap,
java.lang.String projectIds)
Returns the Map
|
java.util.List<SMTable> |
LineageUtil.getTables(APIConstants.EndPointType endPointType,
java.lang.String systemName,
java.lang.String environmentName,
java.lang.String projectIds)
Returns the List
|
Modifier and Type | Method and Description |
---|---|
RequestStatus |
SystemManagerUtil.createTable(SMTable table)
Inserts new Table for the specified SMTable Object.
|
RequestStatus |
SystemManagerUtil.updateTable(SMTable table,
boolean useReferenceId)
Updates Table for the specified SMTable Object and useReferenceId.
|