KEY_CACHE_ACTION |
ContentHandlerInput.VALUE_CACHE_GET or ContentHandlerInput.VALUE_CACHE_PUT |
The action to be confirmed for the specified document. GET asks whether the document should be retrieved from the cache, while PUT asks if it should be stored. |
KEY_DOCUMENT_ID |
java.lang.String |
The key representing the document. Can be retrieved with String documentId = input.getDocumentId(); . |
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 String clientInstanceId = input.getClientInstanceId();
|
KEY_HTTP_SERVLET_REQUEST |
javax.servlet.http.HttpServletRequest |
Request that called this method. Can be retrieved with HttpServletRequest request = input.getHttpServletRequest();
|