public interface VirtualViewerContentHandlerInterface
Modifier and Type | Field and Description |
---|---|
static Integer |
PERM_CREATE
Deprecated.
|
static Integer |
PERM_DELETE
Deprecated.
|
static Integer |
PERM_EDIT
Deprecated.
|
static Integer |
PERM_HIDDEN
Deprecated.
|
static Integer |
PERM_PRINT
Deprecated.
|
static Integer |
PERM_PRINT_WATERMARK
Deprecated.
|
static Integer |
PERM_REDACTION
Deprecated.
|
static Integer |
PERM_VIEW
Deprecated.
|
static Integer |
PERM_VIEW_WATERMARK
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
ContentHandlerResult |
getDocumentContent(ContentHandlerInput input)
Returns the content for the specified document key.
|
void |
init(javax.servlet.ServletConfig config)
Used to set up each content handler instance before any methods are called.
|
ContentHandlerResult |
saveDocumentComponents(ContentHandlerInput input)
This method is used to save or update an existing document and sub-components of the document, such as annotations,
bookmarks, document notes and watermarks.
|
ContentHandlerResult |
saveDocumentComponentsAs(ContentHandlerInput input)
This method is used to save a copy of a document under a new key, along with sub-components of the document, such
as annotations, bookmarks, document notes and watermarks.
|
ContentHandlerResult |
saveDocumentContent(ContentHandlerInput input)
This method is used to update document data only.
|
@Deprecated static final Integer PERM_HIDDEN
@Deprecated static final Integer PERM_REDACTION
@Deprecated static final Integer PERM_PRINT_WATERMARK
@Deprecated static final Integer PERM_VIEW_WATERMARK
@Deprecated static final Integer PERM_VIEW
@Deprecated static final Integer PERM_PRINT
@Deprecated static final Integer PERM_CREATE
@Deprecated static final Integer PERM_EDIT
@Deprecated static final Integer PERM_DELETE
void init(javax.servlet.ServletConfig config) throws VirtualViewerAPIException
config
- The ServletConfig object for the VirtualViewer server. Can be used to retrieve web.xml parameters.VirtualViewerAPIException
- if content handler throws exceptionContentHandlerResult getDocumentContent(ContentHandlerInput input) throws VirtualViewerAPIException
// This example retrieves the document content from a specific directory in the local filesystem.
public ContentHandlerResult getDocumentContent(ContentHandlerInput input)
throws VirtualViewerAPIException
{
String clientInstanceId = input.getClientInstanceId();
String documentKey = input.getDocumentId();
String fullFilePath = gFilePath + URLDecoder.decode(documentKey);
File file = new File(fullFilePath);
byte[] fileBytes = com.snowbound.common.utils.ClientServerIO.getFileBytes(file);
ContentHandlerResult result = new ContentHandlerResult();
result.put(ContentHandlerResult.KEY_DOCUMENT_CONTENT, fileBytes);
return result;
}
// This example retrieves document content from the local file system and adds the same cover page to every
// requested document by returning them as a compound document.
public ContentHandlerResult getDocumentContent(ContentHandlerInput input)
throws VirtualViewerAPIException
{
String clientInstanceId = input.getClientInstanceId();
String documentKey = input.getDocumentId();
List<Object> contentElements = new List<Object>();
//Adding the cover page first will make it the first page(s) of the document
InputStream coverPage = getCoverPageStream();
contentElements.put(coverPage);
//Add the file content from the local system next
String fullFilePath = gFilePath + URLDecoder.decode(documentKey);
File file = new File(fullFilePath);
byte[] fileBytes = com.snowbound.common.utils.ClientServerIO.getFileBytes(file);
contentElements.put(fileBytes);
ContentHandlerResult result = new ContentHandlerResult();
result.put(ContentHandlerResult.KEY_DOCUMENT_CONTENT_ELEMENTS, contentElements);
return result;
}
// This example assumes the existence of a function that returns a single page of the document. To fit the best
// use case of sparse documents, this function should be relatively expensive, so calling it for each page of
// the document is not ideal.
public ContentHandlerResult getDocumentContent(ContentHandlerInput input)
throws VirtualViewerAPIException
{
String clientInstanceId = input.getClientInstanceId();
String documentKey = input.getDocumentId();
Integer requestedPageIndex = input.get(ContentHandlerInput.KEY_SPARSE_PAGE_INDEX);
List<byte[]> sparseElements = new List<byte[]>();
int documentPageCount = getDocumentPageCount(documentKey);
int startPageIndex = 0;
int returnPageCount = documentPageCount;
//If KEY_SPARSE_PAGE_INDEX is null, all pages should be returned. If it is set then we will return the requested
//page and the two next pages.
if(requestedPageIndex != null) {
startPageIndex = requestedPageIndex;
returnPageCount = 3;
//Make sure not to request more pages than the document has
if(startPageIndex + returnPageCount > documentPageCount) {
returnPageCount = documentPageCount - startPageIndex;
}
}
for(int index = startPageIndex; index < startPageIndex + returnPageCount; index++) {
byte[] documentPage = getSingleDocumentPage(documentKey, index);
sparseElements.put(documentPage);
}
ContentHandlerResult result = new ContentHandlerResult();
result.put(ContentHandlerResult.KEY_DOCUMENT_SPARSE_ELEMENTs, sparseElements);
result.put(ContentHandlerResult.KEY_DOCUMENT_SPARSE_PAGE_INDEX, startPageIndex);
result.put(ContentHandlerResult.KEY_DOCUMENT_SPARSE_RETURN_PAGE_COUNT, returnPageCount);
// For this example we are assuming each document is exactly 10 pages long.
// In actual code the real length should be returned.
result.put(ContentHandlerResult.KEY_DOCUMENT_SPARSE_TOTAL_PAGE_COUNT, 10);
return result;
}
ExternalReference
objects.
Note: This feature is currently only supported when running the VirtualViewer server on Windows.input
- ContentHandlerInput containing the following values:
Key | Type | Description |
---|---|---|
KEY_DOCUMENT_ID | java.lang.String | The key representing the document. Can be retrieved with . |
KEY_CLIENT_INSTANCE_ID | java.lang.String | Custom configurable value used to pass data from client to content handler. If not set then will be
the session ID. Can be retrieved with
|
KEY_HTTP_SERVLET_REQUEST | javax.servlet.http.HttpServletRequest | Request that called this method. Can be retrieved with
|
KEY_SPARSE_PAGE_INDEX | Integer | The specific page index being requested. This parameter is used only for sparse documents. If
this parameter is null, the entire document should be returned, even for sparse documents. (For
sparse documents this should be in the form of a complete KEY_DOCUMENT_SPARSE_ELEMENTS list).
Can be retrieved with
|
KEY_SPARSE_PAGE_COUNT | int | Suggested number of pages to return for a sparse document. This does not have to be respected.
Can be retrieved with
|
Key | Type | Description | |
---|---|---|---|
KEY_DOCUMENT_DISPLAY_NAME | String | The name VirtualViewer should display for this document. If omitted VirtualViewer will display the document key instead. | |
KEY_DOCUMENT_CONTENT | byte[] | A byte array of the document content. Only one document content return parameter should be set. | |
KEY_DOCUMENT_INPUT_STREAM | java.io.InputStream | An input stream of the document content. Only one document content return parameter should be set. | |
KEY_DOCUMENT_FILE | java.io.File | A File object referencing the document content file. Using KEY_DOCUMENT_CONTENT or KEY_INPUT_STREAM is recommended for efficiency. Only one document content return parameter should be set. | |
KEY_DOCUMENT_CONTENT_ELEMENTS | java.util.List | A list of content elements - byte arrays, input streams or File objects. They do not have to be in the same form, nor do the original files need to be the same image or document format (a content element list consisting of a JPEG byte array and a PDF input stream is acceptable). VirtualViewer will treat all of the content elements as if they formed one contiguous document. If a list containing only one content element is returned, it will behave exactly as the single-content element cases above. Only one document content return parameter should be set. | |
KEY_DOCUMENT_SPARSE_ELEMENTS | java.util.List | A parameter required for sparse documents. A list of single-page content elements - byte arrays or input streams only. File objects are not supported. If one of the content elements is of a format that supports multiple pages, such as PDF, it must be one page. Any pages beyond the first will be ignored by VirtualViewer. Only one document content return parameter should be set. | |
KEY_DOCUMENT_SPARSE_PAGE_INDEX | java.util.List | A parameter required for sparse documents. The zero-based page index at which the collection of returned pages start. For example, if page index 5 is requested and you are returning pages 5-8, this should equal 5. | |
KEY_DOCUMENT_SPARSE_RETURN_PAGE_COUNT | java.util.List | A parameter required for sparse documents. The number of pages you are returning with this method. For example, if page index 5 is requested and you are returning pages 5-8, this should return 4. | |
KEY_DOCUMENT_SPARSE_TOTAL_PAGE_COUNT | java.util.List | A parameter required for sparse documents. The total number of pages in the sparse document. This should be the same in each request for a given document. For example, when a 300-page-long document is requested, this should be 300 - regardless of how many pages are being returned for the request. | |
KEY_EXTERNAL_REFERENCE_CONTENT_ELEMENTS | java.util.List<ExternalReference > |
A list of external references for CAD/DWG files. |
VirtualViewerAPIException
- if content handler throws exceptionContentHandlerResult saveDocumentContent(ContentHandlerInput input) throws VirtualViewerAPIException
input
- ContentHandlerInput containing the following values:
Key | Type | Description |
---|---|---|
KEY_DOCUMENT_CONTENT | byte[] | The document file content. Can be retrieved with . |
KEY_DOCUMENT_ID | java.lang.String | The key representing the document. Can be retrieved with . |
KEY_CLIENT_INSTANCE_ID | java.lang.String | Custom configurable value used to pass data from client to content handler. If not set then will be
the session ID. Can be retrieved with
|
KEY_HTTP_SERVLET_REQUEST | javax.servlet.http.HttpServletRequest | Request that called this method. Can be retrieved with
|
Key | Type | Description |
---|---|---|
DOCUMENT_ID_TO_RELOAD | String | Optional return used to alert the client that the document key has been changed when saving. This could be used if the content handler decided to create a new document under a new key instead of updating the original document. |
VirtualViewerAPIException
- if content handler throws exceptionContentHandlerResult saveDocumentComponents(ContentHandlerInput input) throws VirtualViewerAPIException
input
- ContentHandlerInput containing the following values:
Key | Type | Description |
---|---|---|
KEY_DOCUMENT_CONTENT | byte[] |
The document file content. If null no changes need to be saved to the document.
Can be retrieved with .
|
KEY_ANNOTATION_LAYERS | com.snowbound.common.transport.AnnotationLayer[] |
All of the annotation layers for the document. Each layer should be updated if it layer.isNew() or
isModified() is true, and if a layer has been saved but is no longer present in the array it should be deleted.
Can be retrieved with .
|
KEY_BOOKMARK_CONTENT | byte[] |
The bookmark file content. If null no changes need to be saved to the bookmark file.
Can be retrieved with .
|
KEY_NOTES_CONTENT | byte[] |
The notes file content. If null no changes need to be saved to the notes file.
Can be retrieved with .
|
KEY_WATERMARK_CONTENT | byte[] |
The watermark file content. If null no changes need to be saved to the watermark file.
Can be retrieved with .
|
KEY_PAGE_COUNT | int | The number of pages in the document. Can be retrieved with . |
KEY_DOCUMENT_FORMAT | int |
An integer code representing the document format. Can be retrieved along with a format information object with the following code:
|
KEY_DOCUMENT_ID | java.lang.String | The key representing the document. Can be retrieved with . |
KEY_CLIENT_INSTANCE_ID | java.lang.String | Custom configurable value used to pass data from client to content handler. If not set then will be
the session ID. Can be retrieved with
|
KEY_HTTP_SERVLET_REQUEST | javax.servlet.http.HttpServletRequest | Request that called this method. Can be retrieved with
|
Key | Type | Description |
---|---|---|
DOCUMENT_ID_TO_RELOAD | String | Optional return used to alert the client that the document key has been changed when saving. This could be used if the content handler decided to create a new document under a new key instead of updating the original document. |
VirtualViewerAPIException
- if content handler throws exceptionContentHandlerResult saveDocumentComponentsAs(ContentHandlerInput input) throws VirtualViewerAPIException
input
- ContentHandlerInput containing the following values:
Key | Type | Description |
---|---|---|
KEY_DOCUMENT_CONTENT | byte[] |
The document file content. If null no changes need to be saved to the document.
Can be retrieved with .
|
KEY_ANNOTATION_LAYERS | com.snowbound.common.transport.AnnotationLayer[] |
All of the annotation layers for the document. If not null all layers should be saved for the
new document.
Can be retrieved with .
|
KEY_BOOKMARK_CONTENT | byte[] |
The bookmark file content. If null no bookmark file need be saved.
Can be retrieved with .
|
KEY_NOTES_CONTENT | byte[] |
The notes file content. If null no notes file need be saved.
Can be retrieved with .
|
KEY_WATERMARK_CONTENT | byte[] |
The watermark file content. If null no watermark file need be saved.
Can be retrieved with .
|
KEY_PAGE_COUNT | int | The number of pages in the document. Can be retrieved with . |
KEY_DOCUMENT_FORMAT | int |
An integer code representing the document format. Can be retrieved along with a format information object with the following code:
|
KEY_DOCUMENT_ID | java.lang.String | A temporary key based on the original document's display name. Can be retrieved with . |
KEY_CLIENT_INSTANCE_ID | java.lang.String | Custom configurable value used to pass data from client to content handler. If not set then will be
the session ID. Can be retrieved with
|
KEY_HTTP_SERVLET_REQUEST | javax.servlet.http.HttpServletRequest | Request that called this method. Can be retrieved with
|
Key | Type | Description |
---|---|---|
DOCUMENT_ID_TO_RELOAD | String | Optional return used to alert the client that the document key has been changed when saving. VirtualViewer will send a temporary document key in the input based on the original document's display name, but if that is being changed then this return value should be set. |
VirtualViewerAPIException
- if content handler throws exceptionCopyright © 2019 Snowbound Software Corporation. All rights reserved.