Package | Description |
---|---|
com.ads.api.beans.mm |
Contains Collection Classes,Java Bean Classes which are specific to Mappings, MappingSpecifications, Project and Subject.
|
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 |
---|---|
java.util.ArrayList<MappingSpecificationRow> |
Mapping.getMappingSpecifications()
Returns the mappingSpecifications like mappingId, mappingSequenceId, sourceName, sourceEnvironemntName etc...
|
Modifier and Type | Method and Description |
---|---|
void |
Mapping.setMappingSpecifications(java.util.ArrayList<MappingSpecificationRow> mappingSpecifications)
Method sets the mappingSpecifications as specified.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<MappingSpecificationRow> |
MappingManagerUtil.getMappingSpecifications(int mappingId)
Returns the List of Mapping Specifications for the specified mappingId.
|
java.util.List<MappingSpecificationRow> |
MappingManagerUtil.getMappingSpecifications(java.util.List<java.lang.Integer> mappingSequenceIds)
Returns the List of MappingSpecification Rows for the specified List of mapSequenceIds.
|
Modifier and Type | Method and Description |
---|---|
RequestStatus |
MappingManagerUtil.addMappingSpecification(int mapId,
MappingSpecificationRow mappingSpecificationRow)
Inserts a single row of mappingSpecification for the specified mapId,mappingSpecificationRow.
|
RequestStatus |
MappingManagerUtil.deleteMappingSpecificationRow(MappingSpecificationRow mappingSpecificationRow)
Deletes the mappingSpecification for the specified mappingSpecificationRow Object.
|
RequestStatus |
MappingManagerUtil.updateMappingSpecification(MappingSpecificationRow mappingSpecificationRow)
Mapping Specification is updated as the specified mappingSpecificationRow.
|
Modifier and Type | Method and Description |
---|---|
RequestStatus |
MappingManagerUtil.addMappingSpecifications(int mapId,
java.util.ArrayList<MappingSpecificationRow> mappingSpecification)
Inserts List of mappingSpecifications into the specified mapId.
|
RequestStatus |
MappingManagerUtil.deleteMappingSpecificationRows(java.util.List<MappingSpecificationRow> mappingSpecificationRows)
Deletes the mappingSpecifications for the specified List of mappingSpecificationRows.
|
RequestStatus |
MappingManagerUtil.updateMappingSpecifications(java.util.List<MappingSpecificationRow> mappingSpecificationRows)
Mapping Specifications are updated as specified in List of mappingSpecificationRows.
|