Difference between revisions of "GetDocument"
From AgileApps Support Wiki
imported>Aeric (Created page with "{{subst: Java API}}") |
imported>Aeric |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE: | {{DISPLAYTITLE:getDocument}} | ||
Retrieves a document specified by its ID. | |||
;Syntax: | ;Syntax: | ||
:<syntaxhighlight lang="java" enclose="div"> | :<syntaxhighlight lang="java" enclose="div"> | ||
Result result = Functions. | Result result = Functions.getDocument(String documentID); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
;Parameters: | ;Parameters: | ||
: | :'''documentID -''' The ID of a document stored in the platform. | ||
;Returns: | ;Returns: | ||
:[[Result Class|<tt>Result</tt>]] object | :[[Result Class|<tt>Result</tt>]] object that contains the document in the form of a {{^PlatformFileBean}}. | ||
;Usage: | ;Usage: | ||
: | :# Use <tt>result.getParameters()</tt> to get the params from the Result object. | ||
:# Call <tt>getPlatformFileBean()</tt> on the params, passing the document ID as a string. | |||
: | :# If needed, call <tt>getBytes()</tt> on the PlatformFileBean to get document content in a byte array. | ||
: | |||
;Example:This example | ;Example:This example logs the size and name associated with a document. | ||
:<syntaxhighlight lang="java" enclose="div"> | :<syntaxhighlight lang="java" enclose="div"> | ||
... | Result result = Functions.getDocument(documentId); | ||
Parameters params = result.getParameters(); | |||
PlatformFileBean file = params.getPlatformFileBean(documentId); | |||
byte[] bytes = file.getBytes(); | |||
String msg = "Name:"+file.getName()+", size:"+file.getEncodedFileContent().length(); | |||
Logger.info(msg, "Document"); | |||
</syntaxhighlight> | </syntaxhighlight> | ||
<!--ACTIVATE THE CATEGORY BELOW FOR MAIN "COLLECTION" PAGES (not for individual methods) | <!--ACTIVATE THE CATEGORY BELOW FOR MAIN "COLLECTION" PAGES (not for individual methods) |
Latest revision as of 00:37, 17 January 2014
Retrieves a document specified by its ID.
- Syntax
- <syntaxhighlight lang="java" enclose="div">
Result result = Functions.getDocument(String documentID); </syntaxhighlight>
- Parameters
- documentID - The ID of a document stored in the platform.
- Returns
- Result object that contains the document in the form of a PlatformFileBean.
- Usage
-
- Use result.getParameters() to get the params from the Result object.
- Call getPlatformFileBean() on the params, passing the document ID as a string.
- If needed, call getBytes() on the PlatformFileBean to get document content in a byte array.
- Example
- This example logs the size and name associated with a document.
- <syntaxhighlight lang="java" enclose="div">
Result result = Functions.getDocument(documentId); Parameters params = result.getParameters(); PlatformFileBean file = params.getPlatformFileBean(documentId); byte[] bytes = file.getBytes(); String msg = "Name:"+file.getName()+", size:"+file.getEncodedFileContent().length(); Logger.info(msg, "Document"); </syntaxhighlight>