Package net.webpdf.wsclient.openapi
Enum ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum
- java.lang.Object
-
- java.lang.Enum<ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum>
-
- net.webpdf.wsclient.openapi.ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum>
- Enclosing class:
- ApplicationConfigSignaturePortalSettings
public static enum ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum extends Enum<ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum>
Defines the profile whose rules web services have to check before they can come to execution. These profiles define a set of rules concerning the validity of signatures. A web service whose execution for a given signed document would violate the rule set selected here should instead abort with an appropriate error code. * adobeRestrictions = Only those changes are allowed that are enabled by the included signatures. This follows the specifications given by Adobe. * generalEditRestrictions = All changes to signed documents are prohibited, even those that might be allowed according to the included signatures. * noEditRestrictions = Editing of signed documents is not restricted and all changes are allowed. (By doing this, you accept the possible invalidation of included signatures.) **Important:** You can find further explanations of these profiles in the chapter \"Signature Validation\".
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADOBERESTRICTIONSGENERALEDITRESTRICTIONSNOEDITRESTRICTIONS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnumfromValue(String value)StringgetValue()StringtoString()static ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADOBERESTRICTIONS
public static final ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum ADOBERESTRICTIONS
-
GENERALEDITRESTRICTIONS
public static final ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum GENERALEDITRESTRICTIONS
-
NOEDITRESTRICTIONS
public static final ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum NOEDITRESTRICTIONS
-
-
Method Detail
-
values
public static ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum c : ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum>
-
fromValue
public static ApplicationConfigSignaturePortalSettings.SignatureEditProfileEnum fromValue(String value)
-
-