Uses of Class
com.ads.api.beans.csm.Codeset
Packages that use Codeset
Package
Description
Contains Collection Classes,Java Bean Classes which are specific to Categories, Codesets, Code Values, Codeset Maps.
Contains Utility Classes, Collection Classes, Java Bean Classes which are specific to System, Environment, Table, Column, Mappings, Subject,
KeyValue Pairs, ROle, Business Glossary Catalog, Document etc...
-
Uses of Codeset in com.ads.api.beans.csm
Methods in com.ads.api.beans.csm that return CodesetModifier and TypeMethodDescriptionCodeset.addCodeValue(CodeValue codeValue) Returns the Codeset object by adding the specified CodeValue object to the codeValues list.Codeset.addCodeValues(List<CodeValue> codeValues) Returns the codeset object by adding the specified list of CodeValue objects to the codeValues list.Codeset.removeCodeValue(CodeValue codeValue) Returns the Codeset object by removing the specified CodeValue object from the codeValues list.Codeset.setCodeValues(List<CodeValue> codeValues) Returns the codeset object by adding the specified list of CodeValue objects to the codeValues list.Methods in com.ads.api.beans.csm that return types with arguments of type CodesetMethod parameters in com.ads.api.beans.csm with type arguments of type CodesetModifier and TypeMethodDescriptionvoidCategory.setCodesets(List<Codeset> codesets) Sets the list of codesets to the category object as specified. -
Uses of Codeset in com.ads.api.util
Methods in com.ads.api.util that return CodesetModifier and TypeMethodDescriptionCodesetManagerUtil.getCodeset(int codesetId) Returns the codeset object for the specified codesetId.CodesetManagerUtil.getCodeset(int codesetId, int fillOptions) Returns the codeset object for the specified codesetId.CodesetManagerUtil.getCodeset(int categoryId, String codesetName) Returns the codeset object for the specified categoryId and codesetName Specifying the categoryId and codesetName are mandatory.CodesetManagerUtil.getCodeset(int categoryId, String codesetName, float version) Returns the codeset object for the specified categoryId and codesetName Specifying the categoryId and codesetName are mandatory.CodesetManagerUtil.getCodeset(int categoryId, String codesetName, float version, int fillOptions) Returns the codeset object for the specified categoryId, codesetName and version.CodesetManagerUtil.getCodeset(int categoryId, String codesetName, int fillOptions) Returns the codeset object for the specified categoryId and codesetName Specifying the categoryId and codesetName are mandatory.Methods in com.ads.api.util that return types with arguments of type CodesetModifier and TypeMethodDescriptionCodesetManagerUtil.getAllRetiredCodesets()Returns the list of all retired codesets present in enterprise codesets.CodesetManagerUtil.getAssignedCodesets(Node.NodeType nodeType, int nodeId) Returns the list of codeset objects for the specified nodeType and nodeId where each codeset object contains codeset name, codeset description, codeset status and category name in which codeset is present etc...CodesetManagerUtil.getAssignedCodesets(Node.NodeType nodeType, int nodeId, int fillOptions) Returns the list of codeset objects for the specified nodeType and nodeId.SystemManagerUtil.getAssignedCodesets(int columnId) Deprecated.SystemManagerUtil.getAssignedCodesets(int columnId, int fillOptions) Deprecated.CodesetManagerUtil.getCodesets(int categoryId) Returns the list of codeset objects for the specified categoryId.CodesetManagerUtil.getCodesets(int categoryId, int fillOptions) Returns the list of codeset objects for the specified categoryId.CodesetManagerUtil.getCodesets(List<Integer> codesetIds) Returns the list of codeset objects for the specified codesetIds list.CodesetManagerUtil.getCodesets(List<Integer> codesetIds, int fillOptions) Returns the list of codeset objects for the specified codesetIds list.CodesetManagerUtil.getPublishedCodesets(int environmentId) Returns the list of published codeset objects for the specified environmentId.CodesetManagerUtil.getRetiredCodesets(int categoryId) Returns the list of retired codeset objects for the specified categoryId.Methods in com.ads.api.util with parameters of type CodesetModifier and TypeMethodDescriptionCodesetManagerUtil.assignCodeset(Node.NodeType nodeType, int nodeId, Codeset codeset) Assigns the specified codeset object to the specified nodeType and nodeId.SystemManagerUtil.assignCodeset(int columnId, Codeset codeset) Deprecated.CodesetManagerUtil.createCodeset(int categoryId, Codeset codeset, boolean saveCodeValues) Codeset is added for the specified categoryId, codeset object and also code values are added only if the saveCodeValues flag is true.CodesetManagerUtil.createCodeset(Codeset codeset, boolean saveCodeValues) Codeset is added for the specified codeset object and also codevalues are added only if the saveCodeValues flag is true.CodesetManagerUtil.deleteCodeset(Codeset codeset) Deletes the codeset with the specified codeset object.CodesetManagerUtil.publishCodeset(Codeset codeset) Codeset is published for the specified codeset object.CodesetManagerUtil.updateCodeset(Codeset codeset) Updates the codeset with the specified codeset object.CodesetManagerUtil.versionCodeset(Codeset codeset) Codeset is versioned for the specified codeset object.Method parameters in com.ads.api.util with type arguments of type CodesetModifier and TypeMethodDescriptionCodesetManagerUtil.assignCodesets(Node.NodeType nodeType, int nodeId, List<Codeset> codesets) Assigns the specified list of codesets to the specified nodeType and nodeId.SystemManagerUtil.assignCodesets(int columnId, List<Codeset> codesets) Deprecated.CodesetManagerUtil.createCodesets(int categoryId, List<Codeset> codesets, boolean saveCodeValues) Codesets are added for the specified list of codeset objects and also code values are added only if the saveCodeValues flag is true.CodesetManagerUtil.createCodesets(List<Codeset> codesets, boolean saveCodeValues) Codesets are added for the specified list of codeset objects and also codevalues are added only if the saveCodeValues flag is true.CodesetManagerUtil.publishCodesets(List<Codeset> codesets) Codesets are published for the specified list of codeset objects.CodesetManagerUtil.updateCodesets(List<Codeset> codesets) Updates the codeset with the specified codeset objects list.CodesetManagerUtil.versionCodesets(List<Codeset> codesets) Codesets are versioned for the specified list of codeset objects.