Package | Description |
---|---|
com.ads.api.beans.common |
Contains Collection Classes,Java Bean Classes which are specific to Mappings, Assigned Resources of the Project, Documents related to projects.
|
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 |
---|---|
Document |
Document.setApprovalRequired(boolean approvalRequired)
Method sets the approvalRequired as specified.
|
Document |
Document.setAuditHistory(AuditHistory auditHistory)
Method sets the documentStatus as specified.
|
Document |
Document.setDocumentApprovedBy(java.lang.String documentApprovedBy)
Method sets the documentApprovedBy as specified.
|
Document |
Document.setDocumentApprovedDate(java.util.Date documentApprovedDate)
Method sets the documentApprovedDate as specified.
|
Document |
Document.setDocumentId(int documentId)
Method to set the documentId as specified.
|
Document |
Document.setDocumentIntendedPurpose(java.lang.String documentIntendedPurpose)
Sets the documentIntendedPurpose as specified.
|
Document |
Document.setDocumentLink(java.lang.String documentLink)
Sets the documentLink as specified.
|
Document |
Document.setDocumentName(java.lang.String documentName)
Method sets the documentName as specified.
|
Document |
Document.setDocumentObject(java.lang.String documentObject)
Method sets the documentObject as specified.
|
Document |
Document.setDocumentOwner(java.lang.String documentOwner)
Method sets the documentOwner as specified.
|
Document |
Document.setDocumentReference(java.lang.String documentReference)
Method sets the documentReference as specified.
|
Document |
Document.setDocumentReferenceNumber(java.lang.String documentReferenceNumber)
Method sets the documentReferenceNumber as specified.
|
Document |
Document.setDocumentStatus(java.lang.String documentStatus)
Method sets the documentStatus as specified.
|
Document |
Document.setDocumentType(java.lang.String documentType)
Method sets the type of the Document.
|
Document |
Document.setUserData(java.util.HashMap<java.lang.String,java.lang.String> userData)
Method sets the userData as specified.
|
Document |
Document.setUserData(java.lang.String key,
java.lang.String val)
Method sets the userData as specified.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Document> |
Mapping.getMappingDocuments()
Returns the mappingDocuments Details i.e DocumentName, DocumentType, DocumentObject etc...
|
java.util.ArrayList<Document> |
Project.getProjectDocuments()
Returns the projectDocuments associated with the Project.
|
Modifier and Type | Method and Description |
---|---|
void |
Project.addDocument(Document doc)
Adds a Document to the Project.
|
Modifier and Type | Method and Description |
---|---|
void |
Mapping.setMappingDocuments(java.util.ArrayList<Document> mappingDocuments)
Method sets the mappingDocuments as specified.
|
void |
Project.setProjectDocuments(java.util.ArrayList<Document> projectDocuments)
Method sets the projectDocuments as specified.
|
Modifier and Type | Method and Description |
---|---|
Document |
DocumentUtil.getDocument(int documentId)
Returns the Document Details with the specified documentId.
|
Document |
SystemManagerUtil.getDocument(Node.NodeType nodeType,
int docId)
Returns the Document object for the specified docId of nodeType.
|
Document |
DocumentUtil.getDocument(Node.NodeType nodeType,
int nodeId,
java.lang.String documentName)
Returns the document Details with the given documentName of the
specified nodeId of nodeType.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Document> |
DocumentUtil.getDocuments(java.util.List<java.lang.Integer> documentIds)
Returns the Documents of the specified List of DocumentIds.
|
java.util.List<Document> |
DocumentUtil.getDocuments(Node.NodeType nodeType,
int nodeId)
Returns the documents of the specified nodeId of nodeType.
|
java.util.ArrayList<Document> |
SystemManagerUtil.getDocuments(Node.NodeType nodeType,
java.util.List<java.lang.Integer> docIds)
Returns the List of Document object for the specified List of docId's of the nodeType.
|
java.util.ArrayList<Document> |
SystemManagerUtil.getEnvironmentDocuments(int environmentId)
Returns the List of Document objects for the specified environmentId.
|
java.util.ArrayList<Document> |
MappingManagerUtil.getMappingDocuments(int mappingId)
Returns the List of Mapping Document objects for the specified mappingId.
|
java.util.ArrayList<Document> |
MappingManagerUtil.getProjectDocuments(int projectId)
Returns the List of project documents for the specified projectId.
|
java.util.ArrayList<Document> |
SystemManagerUtil.getSystemDocuments(int systemId)
Returns the list of systemDocuments for the specified systemId.
|
Modifier and Type | Method and Description |
---|---|
RequestStatus |
SystemManagerUtil.addDocument(int nodeId,
Node.NodeType nodeType,
Document document)
Document is added for the specified nodeId of nodeType.
|
RequestStatus |
DocumentUtil.addDocument(Node.NodeType nodeType,
int nodeId,
Document document)
Document is added at the NodeId of the given nodeType with the document details.
|
RequestStatus |
SystemManagerUtil.addDocument(java.lang.String nodeName,
int parentNodeId,
Node.NodeType parentNodeType,
Document document)
Document is added for the specified nodeName, parentNodeId of parentNodeType.
|
RequestStatus |
MappingManagerUtil.addMappingDocument(int mapId,
Document document)
MappingDocument is added for the specified mapId.
|
RequestStatus |
MappingManagerUtil.addMappingDocument(int nodeId,
Node.NodeType nodeType,
java.lang.String mapName,
Document document)
MappingDocument is added for the specified mapName.
|
RequestStatus |
DocumentUtil.updateDocument(Document document)
Updates Document with the specified document Object.
|
RequestStatus |
SystemManagerUtil.updateDocument(Node.NodeType nodeType,
Document document)
Document is updated as specified in Document Object of the given nodeType.
|
RequestStatus |
DocumentUtil.updateDocument(Node.NodeType nodeType,
int nodeId,
java.lang.String documentName,
Document document)
Specified documentName is updated with the document Details, of the
given nodeId of nodeType.
|
Modifier and Type | Method and Description |
---|---|
RequestStatus |
DocumentUtil.addDocuments(Node.NodeType nodeType,
int nodeId,
java.util.List<Document> documents)
Documents are added at the NodeId of the given nodeType with the
documentsObjJson details.
|
RequestStatus |
DocumentUtil.updateDocuments(java.util.List<Document> documents)
Documents are updated with the specified Document Objects.
|