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.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 |
---|---|
Codeset |
Codeset.addCodeValue(CodeValue codeValue)
Returns the Codeset object by adding the specified CodeValue object to
the codeValues list.
|
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.removeCodeValue(CodeValue codeValue)
Returns the Codeset object by removing the specified CodeValue object
from 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<Codeset> |
Category.getCodesetList() |
Modifier and Type | Method and Description |
---|---|
void |
Category.setCodesetList(java.util.List<Codeset> codesetList) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Codeset> |
SystemManagerUtil.getAssignedCodesets(int columnId)
Returns the list of Codeset objects for the specified columnId where each
Codeset object contains codeset name,codeset description, codeset status
and category name in which Codeset is present etc...
|
java.util.List<Codeset> |
SystemManagerUtil.getAssignedCodesets(int columnId,
int fillOptions)
Returns the list of Codeset objects for the specified columnId.
|
Modifier and Type | Method and Description |
---|---|
RequestStatus |
SystemManagerUtil.assignCodeset(int columnId,
Codeset codeset)
Assigns the specified codeset to the specified columnId.
|
Modifier and Type | Method and Description |
---|---|
RequestStatus |
SystemManagerUtil.assignCodesets(int columnId,
java.util.List<Codeset> codesets)
Assigns the specified list of codesets to the specified columnId.
|