Package | Description |
---|---|
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 |
---|---|
Mapping |
MappingManagerUtil.getMapping(int mappingId)
Returns Mapping Object for the specified mappingId.
|
Mapping |
MappingManagerUtil.getMapping(int mappingId,
boolean fillSpecifications)
Returns Mapping Object for the specified mappingId and fillSpecifications.
|
Mapping |
MappingManagerUtil.getMapping(int mappingId,
boolean fillSpecifications,
boolean fillDocuments)
Returns Mapping Object for the specified mappingId, fillSpecifications and fillDocuments.
|
Mapping |
MappingManagerUtil.getMapping(int parentNodeId,
Node.NodeType nodeType,
java.lang.String mappingName)
Returns Mapping Object for the specified parentNodeId, mappingName and nodeType.
|
Mapping |
MappingManagerUtil.getMapping(int nodeId,
Node.NodeType nodeType,
java.lang.String mapName,
float versionNo)
Returns all the information relating to the specified mapName, such as
mappingDescription, mappingSpecVersion, mappingStatus,
mappingPlannedDevelopmentEffort, actualEffort,testingNotes, versionLabel, userDefined Fields, AuditFields etc... |
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Mapping> |
MappingManagerUtil.getMappings(int parentNodeId,
Node.NodeType nodeType)
Returns the List of Mappings for the specified parentNodeId, nodeType.
|
java.util.ArrayList<Mapping> |
MappingManagerUtil.getMappings(java.util.List<java.lang.Integer> mapIds,
boolean fillSpecifications,
boolean fillDocuments)
Returns List of Mappings for the specified List of mapIds.
|
java.util.ArrayList<Mapping> |
MappingManagerUtil.getMappingsInProject(int projectId,
boolean fillSpecifications,
boolean fillDocuments)
Returns List of Mappings for the specified projectId, fillSpecifications and fillDocuments.
|
java.util.ArrayList<Mapping> |
MappingManagerUtil.getMappingsInProject(java.lang.String projectName,
boolean fillSpecifications,
boolean fillDocuments)
Returns List of mappings for the specified projectName, fillSpecifications, fillDocuments.
|
java.util.ArrayList<Mapping> |
MappingManagerUtil.getMappingsInSubject(int subjectId,
boolean fillSpecifications,
boolean fillDocuments)
Returns List of mappings for the specified for a given subject Id,
fillSpecifications, fillDocuments.
|
java.util.ArrayList<Mapping> |
MappingManagerUtil.getMappingsInSubject(java.lang.String subjectName,
boolean fillSpecifications,
boolean fillDocuments)
Returns List of all mappings from all projects containing the subject name at any level, fillSpecifications and fillDocuments.
|
Modifier and Type | Method and Description |
---|---|
RequestStatus |
MappingManagerUtil.createMapping(Mapping mapping)
Creates Mapping With the specified Mapping Object.
|
RequestStatus |
MappingManagerUtil.createMapping(Mapping mapping,
boolean addSpecifications)
Creates Mapping with the specified mapping object and addSpecifications.
|
RequestStatus |
MappingManagerUtil.updateMapping(Mapping mapping)
Updates mapping for the specified Mapping Object.
|
RequestStatus |
MappingManagerUtil.versionMapping(Mapping mapping)
Appends mapping version for the specified Mapping Object.
|