public enum PortalJobStatus extends Enum<PortalJobStatus>
| Enum Constant and Description |
|---|
COMPLETED_SUCCESSFULLY
Indicates that the signature job has completed successfully with signatures from all signers.
|
FAILED
Indicates that the signature job failed.
|
IN_PROGRESS
Indicates that there has been a change to the job, but that it has not been signed by all signers yet.
|
NO_CHANGES
There has not been any changes since the last received status change.
|
| Modifier and Type | Method and Description |
|---|---|
static PortalJobStatus |
fromXmlType(no.digipost.signature.api.xml.XMLPortalSignatureJobStatus xmlJobStatus) |
static PortalJobStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PortalJobStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PortalJobStatus IN_PROGRESS
status of each signer.
When the client confirms a job with this status,
the job is removed from the queue and will not be returned upon subsequent polling,
until the status has changed again.public static final PortalJobStatus COMPLETED_SUCCESSFULLY
confirms a job with this status,
the job and its associated resources will become unavailable through the Signature API.public static final PortalJobStatus FAILED
public static final PortalJobStatus NO_CHANGES
public static PortalJobStatus[] values()
for (PortalJobStatus c : PortalJobStatus.values()) System.out.println(c);
public static PortalJobStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static PortalJobStatus fromXmlType(no.digipost.signature.api.xml.XMLPortalSignatureJobStatus xmlJobStatus)
Copyright © 2019 Digipost. All rights reserved.