Package com.redwood.scheduler.api.model
Interface Document
- 
- All Superinterfaces:
- ApplicationObject,- BusinessKeyObject,- DocumentComp,- NamedRootObject,- NamedRootObjectComp,- PartitionableObject,- PartitionableObjectComp,- Readable,- Root,- SchedulerEntity,- SchedulerEntityComp
 
 public interface Document extends DocumentComp, ApplicationObject, BusinessKeyObject, Readable An object for storing arbitrary documentation (as a byte stream).
- 
- 
Field SummaryFields Modifier and Type Field Description static StringDOCUMENT_PATH_PREFIXThe standard prefix that is used to create the document.static StringOBJECT_TYPEString that will be returned fromSchedulerEntity.getObjectType()for "Document" objects.static StringSEC_PRIV_CREATEThis privilege can be granted at a group level.static StringSEC_PRIV_DELETEThis privilege can be granted at a group level.static StringSEC_PRIV_EDITThis privilege can be granted at a group level.static StringSEC_PRIV_VIEWThis privilege can be granted at a group level.static StringSEC_RANK_ALLThis rank is made of the following privileges: create , view , edit , deletestatic StringSEC_RANK_CREATEThis rank is made of the following privileges: createstatic StringSEC_RANK_DELETEThis rank is made of the following privileges: create , view , deletestatic StringSEC_RANK_EDITThis rank is made of the following privileges: create , view , editstatic StringSEC_RANK_NONEThis rank has no privileges assigned to it.static StringSEC_RANK_VIEWThis rank is made of the following privileges: viewstatic QueryObjectType<Document>TYPEType that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...).- 
Fields inherited from interface com.redwood.scheduler.api.model.SchedulerEntityACTION_AUDIT, ACTION_EXPORT, ACTION_READ, BEHAVIOR_DEPRECATED, BEHAVIOR_NONE, BEHAVIOR_SYSTEM
 
- 
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description RequiredPermissioncheckCreatePrivilege()Check whether or not the create action can be performed on this object.RequiredPermissioncheckDeletePrivilege()Check whether or not the delete action can be performed on this object.RequiredPermissioncheckEditPrivilege()Check whether or not the edit action can be performed on this object.RequiredPermissioncheckViewPrivilege()Check whether or not the view action can be performed on this object.byte[]getData()Deprecated.Access to the data should be done through the stream methodsStringgetDataAsBase64()Deprecated.Access to the data should be done through the stream methodsStringgetDataAsString()Get the document data as a string in the UTF-8 charset.FormatgetFormat()Get the Format.StringgetFullPath()Get the value for FullPath.InputStreamgetInputStream()Get the Document data as an InputStream.OutputStreamgetOutputStream()Get an OutputStream to write data to the Document.StringgetViewerURL()Get the value for ViewerURL.RWIterable<VisualizationProcessServerQueue>getVisualizationProcessServerQueues()Get anRWIterableover an ordered collection ofVisualizationProcessServerQueues.StringgetXmlBodyContent()Get the value for XmlBodyContent.StringgetXmlContent()The document data, rendered as XML.voidsetData(byte[] newData)Deprecated.Access to the data should be done through the stream methodsvoidsetDataAsBase64(String newDataAsBase64)Deprecated.Access to the data should be done through the stream methodsvoidsetDataAsString(String newData)Set the document data as a string using the UTF-8 charset.voidsetFormat(Format newFormat)Set the value for Format.- 
Methods inherited from interface com.redwood.scheduler.api.model.ApplicationObjectgetParentApplication, setParentApplication
 - 
Methods inherited from interface com.redwood.scheduler.api.model.BusinessKeyObjectgetBusinessKey
 - 
Methods inherited from interface com.redwood.scheduler.api.model.NamedRootObjectcreateObjectReference, getComment, getDescription, getLinkedObjectReferenceByLinkedObject, getLinkedObjectReferenceByName, getLinkedObjectReferences, getName, getSearchName, getSourceObjectReferences, isHidden, setComment, setDescription, setName
 - 
Methods inherited from interface com.redwood.scheduler.api.model.PartitionableObjectcreateObjectTag, getEditablePartitions, getObjectTagByObjectTagDefinition, getObjectTags, getPartition, setPartition
 - 
Methods inherited from interface com.redwood.scheduler.api.model.RootgetCreationTime, getLastModificationTime, getLastModifierSubject
 - 
Methods inherited from interface com.redwood.scheduler.api.model.SchedulerEntitycanPerform, createSubjectObjectPrivilegeGrant, deleteObject, getAuditTrail, getAuditTrailSize, getBehavior, getEffectiveBehavior, getErrorNameEN, getErrorNameKey, getLLPVersion, getLOV, getLOVSupport, getObjectType, getParentSchedulerEntities, getRuntime, getSubjectObjectPrivilegeGrantBySubject, getSubjectObjectPrivilegeGrants, getUniqueId, getUrl, getUrl, isCreated, isDeletable, isDeleted, isModifiable, isModified, isSelectVersioned, processRelatedObjects, processRelatedObjects, processRelatedObjects, refreshObject, resetObject, resetObject, resetValuesToDefault, selectForRead
 
- 
 
- 
- 
- 
Field Detail- 
OBJECT_TYPEstatic final String OBJECT_TYPE String that will be returned fromSchedulerEntity.getObjectType()for "Document" objects.- See Also:
- Constant Field Values
 
 - 
TYPEstatic final QueryObjectType<Document> TYPE Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...).
 - 
DOCUMENT_PATH_PREFIXstatic final String DOCUMENT_PATH_PREFIX The standard prefix that is used to create the document.- See Also:
- Constant Field Values
 
 - 
SEC_PRIV_CREATEstatic final String SEC_PRIV_CREATE This privilege can be granted at a group level.- See Also:
- Constant Field Values
 
 - 
SEC_PRIV_VIEWstatic final String SEC_PRIV_VIEW This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
 
 - 
SEC_PRIV_EDITstatic final String SEC_PRIV_EDIT This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
 
 - 
SEC_PRIV_DELETEstatic final String SEC_PRIV_DELETE This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
 
 - 
SEC_RANK_NONEstatic final String SEC_RANK_NONE This rank has no privileges assigned to it.- See Also:
- Constant Field Values
 
 - 
SEC_RANK_CREATEstatic final String SEC_RANK_CREATE This rank is made of the following privileges: create- See Also:
- Constant Field Values
 
 - 
SEC_RANK_VIEWstatic final String SEC_RANK_VIEW This rank is made of the following privileges: view- See Also:
- Constant Field Values
 
 - 
SEC_RANK_EDITstatic final String SEC_RANK_EDIT This rank is made of the following privileges: create , view , edit- See Also:
- Constant Field Values
 
 - 
SEC_RANK_DELETEstatic final String SEC_RANK_DELETE This rank is made of the following privileges: create , view , delete- See Also:
- Constant Field Values
 
 - 
SEC_RANK_ALLstatic final String SEC_RANK_ALL This rank is made of the following privileges: create , view , edit , delete- See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
getFullPathString getFullPath() Get the value for FullPath. ( The full path to the document, normalized to allow for convenient database searching. The full path is defined as follows:- FullPath::=- Prefix- Path- Document
- Prefix::= "doc:" <Document.Partition.Name> ":"
- Path::= ( "/" [ <Application.Partition.Name> "." ] <Application.Name> )*
- Document::= "/" <Document.Name> [ "." <Document.Format.Extension> ]
 nullif this object has been retrieved from the database.- Returns:
- the field
- Throws:
- com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException- This will be thrown if this method is called while the object is not attached to a session.
 
 - 
getDataAsBase64@Deprecated String getDataAsBase64() Deprecated.Access to the data should be done through the stream methodsGet the value for DataAsBase64. (The document data as a base 64 encoded String.) - Returns:
- the field
- Throws:
- com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException- This will be thrown if this method is called while the object is not attached to a session.
 
 - 
getData@Deprecated byte[] getData() Deprecated.Access to the data should be done through the stream methodsGet the value for Data. (The document data as an array of bytes.) - Returns:
- the field
- Throws:
- com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException- This will be thrown if this method is called while the object is not attached to a session.
 
 - 
getXmlBodyContentString getXmlBodyContent() Get the value for XmlBodyContent. (The document data, rendered as XML.)- Returns:
- the field
- Throws:
- com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException- This will be thrown if this method is called while the object is not attached to a session.
 
 - 
getViewerURLString getViewerURL() Get the value for ViewerURL. ( Viewer URL of this Document. The URL returned points to the contents of the Document. )- Returns:
- the field
- Throws:
- com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException- This will be thrown if this method is called while the object is not attached to a session.
 
 - 
setDataAsBase64@Deprecated void setDataAsBase64(String newDataAsBase64) Deprecated.Access to the data should be done through the stream methodsSet the value for DataAsBase64. (The document data as a base 64 encoded String.) This value is optional. - Parameters:
- newDataAsBase64- the new value for DataAsBase64.
- Throws:
- com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException- This will be thrown if this method is called while the object is not attached to a session.
 
 - 
setData@Deprecated void setData(byte[] newData) Deprecated.Access to the data should be done through the stream methodsSet the value for Data. (The document data as an array of bytes.) This value is optional. - Parameters:
- newData- the new value for Data.
- Throws:
- com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException- This will be thrown if this method is called while the object is not attached to a session.
 
 - 
getDataAsStringString getDataAsString() Get the document data as a string in the UTF-8 charset.- Returns:
- The document data.
 
 - 
setDataAsStringvoid setDataAsString(String newData) Set the document data as a string using the UTF-8 charset.- Parameters:
- newData- The new document data as a string in the given charset.
 
 - 
getXmlContentString getXmlContent() The document data, rendered as XML. If (and only if) this document is associated with a HTML format, this attribute treats the document as XHTML and returns rendered XHTML containing the full document.- Returns:
- The document data.
 
 - 
getInputStreamInputStream getInputStream() throws IOException Get the Document data as an InputStream.- Returns:
- The InputStream of the data.
- Throws:
- IOException
 
 - 
getOutputStreamOutputStream getOutputStream() throws IOException Get an OutputStream to write data to the Document.- Returns:
- The OutputStream to write data to.
- Throws:
- IOException
 
 - 
getFormatFormat getFormat() Get the Format.- Returns:
- Format
- Throws:
- com.redwood.scheduler.api.exception.ObjectDeletedException- If this method is called when the object has been marked for deletion.
- com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException- If this method is called when the object has been removed from it's session.
 
 - 
setFormatvoid setFormat(Format newFormat) Set the value for Format. This value is mandatory.- Parameters:
- newFormat- is the object to set Format to. The format of the document data If this is- null, then the object cannot be persisted.
 
 - 
getVisualizationProcessServerQueuesRWIterable<VisualizationProcessServerQueue> getVisualizationProcessServerQueues() Get anRWIterableover an ordered collection ofVisualizationProcessServerQueues. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull. The process servers to show in the process server and queue visualization- Specified by:
- getVisualizationProcessServerQueuesin interface- DocumentComp
- Returns:
- An RWIterableover an ordered collection ofVisualizationProcessServerQueueobjects .
 
 - 
checkCreatePrivilegeRequiredPermission checkCreatePrivilege() Check whether or not the create action can be performed on this object.- Returns:
- a RequiredPermissioninstance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
 
 - 
checkViewPrivilegeRequiredPermission checkViewPrivilege() Check whether or not the view action can be performed on this object.- Returns:
- a RequiredPermissioninstance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
 
 - 
checkEditPrivilegeRequiredPermission checkEditPrivilege() Check whether or not the edit action can be performed on this object.- Returns:
- a RequiredPermissioninstance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
 
 - 
checkDeletePrivilegeRequiredPermission checkDeletePrivilege() Check whether or not the delete action can be performed on this object.- Returns:
- a RequiredPermissioninstance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
 
 
- 
 
-