Class SignatureService.StatusWithBlob
- java.lang.Object
-
- org.nuxeo.ecm.platform.signature.api.sign.SignatureService.StatusWithBlob
-
- Enclosing interface:
- SignatureService
public static class SignatureService.StatusWithBlob extends Object
Information about a blob and its signing status.
-
-
Field Summary
Fields Modifier and Type Field Description BlobblobBlobHolderblobHolderStringpathstatic intSIGNED_CURRENTThe signing status for a document that is signed by the current user (and maybe others).static intSIGNED_OTHERThe signing status for a document that is signed by users other than the current user.intstatusA document's status may be: unsignable (UNSIGNABLE), unsigned (UNSIGNED), signed by the current user (and maybe also others) (SIGNED_CURRENT), signed only by others (SIGNED_OTHER).static intUNSIGNABLEThe signing status for a document that is not signable (no attachment or unsupported attachment type).static intUNSIGNEDThe signing status for a document that is not signed.
-
Constructor Summary
Constructors Constructor Description StatusWithBlob(int status, Blob blob, BlobHolder blobHolder, String path)
-
-
-
Field Detail
-
UNSIGNABLE
public static final int UNSIGNABLE
The signing status for a document that is not signable (no attachment or unsupported attachment type).- See Also:
- Constant Field Values
-
UNSIGNED
public static final int UNSIGNED
The signing status for a document that is not signed.- See Also:
- Constant Field Values
-
SIGNED_CURRENT
public static final int SIGNED_CURRENT
The signing status for a document that is signed by the current user (and maybe others).- See Also:
- Constant Field Values
-
SIGNED_OTHER
public static final int SIGNED_OTHER
The signing status for a document that is signed by users other than the current user.- See Also:
- Constant Field Values
-
status
public final int status
A document's status may be:- unsignable (
UNSIGNABLE), - unsigned (
UNSIGNED), - signed by the current user (and maybe also others) (
SIGNED_CURRENT), - signed only by others (
SIGNED_OTHER).
- unsignable (
-
blob
public final Blob blob
-
blobHolder
public final BlobHolder blobHolder
-
path
public final String path
-
-
Constructor Detail
-
StatusWithBlob
public StatusWithBlob(int status, Blob blob, BlobHolder blobHolder, String path)
-
-