APIs to access letter instances apis-to-access-letter-instances
Overview overview
Using the Create Correspondence UI of Correspondence Management, you can save drafts of letter instances under progress and there are submitted letter instances.
Correspondence Management provides you with APIs using which you can build the listing interface to work with submitted letter instances or drafts. The APIs list and open submitted and draft letter instances of an agent, so that the agent could continue working on the draft or submitted letter instances.
Fetching letter instances fetching-letter-instances
Correspondence Management exposes APIs to fetch letter instances through the LetterInstanceService service.
Class or sling.getService(LetterInstanceService. Class ) in JSP.
Using getAllLetterInstances using-nbsp-getallletterinstances
The following API finds the letter instances based on the query object (both Submitted and Draft). If the query object is null, then it returns all the letter instances. This API returns a list of LetterInstanceVO objects, which can be used for extracting additional information of the letter instance.
Syntax: List getAllLetterInstances(Query query) throws ICCException;
Example 1: Fetch all the letter instances of type SUBMITTED example-fetch-all-the-letter-instances-of-type-submitted
The following code returns the list of submitted letter instances. To get only drafts, change the LetterInstanceType.COMPLETE.name()
to LetterInstanceType.DRAFT.name().
@Reference
LetterInstanceService letterInstanceService;
Query query = new Query();
List<LetterInstanceVO> submittedLetterInstances = new ArrayList<LetterInstanceVO>();
Statement statementForInstanceType = new Statement();
statementForInstanceType.setAttributeName("letterInstanceType");
statementForInstanceType.setOperator(Operator.EQUALS);
statementForInstanceType.setAttributeValue(LetterInstanceType.COMPLETE.name());
query.addStatement(statementForInstanceType);
submittedLetterInstances = letterInstanceService.getAllLetterInstances(query);
Example 2: Fetch all the letter instances submitted by a user and letter instance type is DRAFT example-nbsp-fetch-all-the-letter-instances-submitted-by-a-user-and-letter-instance-type-is-draft
The following code has multiple statements in the same query to get the results filtered based on different criteria such as letter instance submitted (attribute submittedby) by a user and type of letterInstanceType is DRAFT.
@Reference
LetterInstanceService letterInstanceService;
String submittedBy = "tglodman";
Query query = new Query();
List<LetterInstanceVO> submittedLetterInstances = new ArrayList<LetterInstanceVO>();
Statement statementForInstanceType = new Statement();
statementForInstanceType.setAttributeName("letterInstanceType");
statementForInstanceType.setOperator(Operator.EQUALS);
statementForInstanceType.setAttributeValue(LetterInstanceType.COMPLETE.name());
query.addStatement(statementForInstanceType);
Statement statementForSubmittedBy = new Statement();
statementForSubmittedBy .setAttributeName("submittedby");
statementForSubmittedBy .setOperator(Operator.EQUALS);
statementForSubmittedBy .setAttributeValue(submittedBy);
query.addStatement(statementForSubmittedBy );
submittedLetterInstances = letterInstanceService.getAllLetterInstances(query);
Using getLetterInstance using-nbsp-getletterinstance
Fetch the letter instance identified by the given letter instance id. It returns `` null if instance id is not matched.
Syntax: public LetterInstanceVO getLetterInstance(String letterInstanceId) throws ICCException;
@Reference
LetterInstanceService letterInstanceService;
String letterInstanceId = "/content/apps/cm/letterInstances/1001/sampleLetterInstance";
LetterInstanceVO letterInstance = letterInstanceService.getLetterInstance(letterInstanceId );
Verifying if LetterInstance exist verifying-if-letterinstance-exist
Check if a Letter Instance exists by the given name
Syntax: public Boolean letterInstanceExists(String letterInstanceName) throws ICCException;
@Reference
LetterInstanceService letterInstanceService;
String letterInstanceName = "sampleLetterInstance";
Boolean result = letterInstanceService.letterInstanceExists(letterInstanceName );
Opening letter instances opening-letter-instances
Letter Instance can be of the type Submitted or Draft. Opening both the letter instance types show different behaviors:
- If there is a Submitted letter instance, a PDF representing the letter instance is opened. The submitted Letter instance persisted on the server also contains the dataXML & processed XDP, which can be used to accomplish and further custom use a case such as creating a PDF/A.
- If there is a Draft letter instance, the create correspondence UI is reloaded to the exact previous state as it was during the time when the draft was created
Opening Draft Letter Instance opening-draft-letter-instance-nbsp
CCR UI supports the cmLetterInstanceId parameter, which can be used to reloaded letter.
https://[hostName]:[portNo]/[contextPath]//aem/forms/createcorrespondence.html?random=[randomNo]&cmLetterInstanceId=[letterInstanceId]
Opening submitted letter instance opening-submitted-letter-instance
Submitted PDF can be directly opened using the letter instance Id:
https://[hostName]:[portNo]/[contextPath]/[letterInstanceId]