Package | Description |
---|---|
com.ads.api.beans.csm |
Contains Collection Classes,Java Bean Classes which are specific to Categories, Codesets, Code Values, Codeset Maps.
|
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 |
---|---|
CodeValue |
CodeValue.addExtendedProperty(KeyValue keyValue)
Returns CodeValue object by adding specified KeyValue object to the
CodeValue object where KeyValue object contains details like key,value,
objectId,objectTypeId etc....
|
CodeValue |
CodeValue.setExtendedProperties(java.util.List<KeyValue> extendedProperties)
Returns the CodeValue object by setting the specified list of
extendedProperties to the CodeValue object
|
Modifier and Type | Method and Description |
---|---|
java.util.List<CodeValue> |
Codeset.getCodeValues()
Returns the list of CodeValue objects where each codeValue Object
contains details like codeName,codeValue,description etc...
|
Modifier and Type | Method and Description |
---|---|
Codeset |
Codeset.addCodeValue(CodeValue codeValue)
Returns the Codeset object by adding the specified CodeValue object to
the codeValues list.
|
Codeset |
Codeset.removeCodeValue(CodeValue codeValue)
Returns the Codeset object by removing the specified CodeValue object
from the codeValues list.
|
Modifier and Type | Method and Description |
---|---|
Codeset |
Codeset.addCodeValues(java.util.List<CodeValue> codeValues)
Returns the Codeset object by adding the specified list of CodeValue
objects to the codeValues list.
|
Codeset |
Codeset.setCodeValues(java.util.List<CodeValue> codeValues)
Returns the Codeset object by adding the specified list of CodeValue
objects to the codeValues list.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<CodeValue> |
SMColumn.getValidValues()
Returns the list of CodeValue objects.
|
Modifier and Type | Method and Description |
---|---|
void |
SMColumn.setValidValues(java.util.List<CodeValue> validValues)
Method sets the CodeValue objects as specified.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<CodeValue> |
SystemManagerUtil.getValidValues(int columnId)
Returns the List of CodeValue objects for the specified columnId where
each CodeValue object contains code name,code value,code description and
codeset name in which codeValue is present etc....
|
java.util.List<CodeValue> |
SystemManagerUtil.getValidValues(int columnId,
int fillOptions)
Returns the List of CodeValue objects for the specified columnId.
|
Modifier and Type | Method and Description |
---|---|
RequestStatus |
CodesetManagerUtil.updateCodeValue(CodeValue codeValue)
Updates CodeValue for the codeId specified in the CodeValue Object.
|
RequestStatus |
CodesetManagerUtil.updateCodeValue(CodeValue codeValue,
boolean updateExtendedProperties)
Updates CodeValue for the codeId specified in the CodeValue Object and
also updates its extended properties only if updateExtendedProperties
flag is true.
|
Modifier and Type | Method and Description |
---|---|
RequestStatus |
CodesetManagerUtil.updateCodeValues(java.util.List<CodeValue> codeValues)
Updates list of CodeValues for the codeId specified in the list of each
CodeValue Object.
|
RequestStatus |
CodesetManagerUtil.updateCodeValues(java.util.List<CodeValue> codeValues,
boolean updateExtendedProperties)
Updates list of CodeValues for the codeId specified in the each CodeValue
Object and also updates its corresponding extended properties only if
updateExtendedProperties flag is true.
|