java.lang.Object | ||
↳ | java.lang.Enum<E extends java.lang.Enum<E>> | |
↳ | com.pdftron.pdf.VerificationOptions.CertificateTrustFlag |
An enumeration representing the level of trust associated with a particular certificate. Multiple flag values can be combined using bitwise operators.
Enum Values | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
VerificationOptions.CertificateTrustFlag | e_certification_trust | analogous to "kPSSigTrustAuthenticDocuments" in FDF cert exchange specification. | |||||||||
VerificationOptions.CertificateTrustFlag | e_complete_trust | another handy shortcut for testing | |||||||||
VerificationOptions.CertificateTrustFlag | e_default_trust | handy shortcut for what Acrobat does by default -- trust for everything except certification, javascript, and dynamic | |||||||||
VerificationOptions.CertificateTrustFlag | e_dynamic_content | analogous to "kPSSigTrustDynamicContent" in FDF cert exchange specification. | |||||||||
VerificationOptions.CertificateTrustFlag | e_identity | analogous to "kPSSigTrustIdentity" in FDF cert exchange specification. | |||||||||
VerificationOptions.CertificateTrustFlag | e_javascript | analogous to "kPSSigTrustJavaScript" in FDF cert exchange specification. | |||||||||
VerificationOptions.CertificateTrustFlag | e_signing_trust | analogous to "kPSSigTrustSigning" in FDF cert exchange specification. | |||||||||
VerificationOptions.CertificateTrustFlag | e_trust_anchor | analogous to "kPSSigTrustAnchor" in FDF cert exchange specification. |
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
public final int | value |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
static VerificationOptions.CertificateTrustFlag | valueOf(String name) | ||||||||||
final static CertificateTrustFlag[] | values() |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Enum
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.lang.Comparable
|
analogous to "kPSSigTrustAuthenticDocuments" in FDF cert exchange specification. Allows certifications using this identity to be verified.
another handy shortcut for testing
handy shortcut for what Acrobat does by default -- trust for everything except certification, javascript, and dynamic
analogous to "kPSSigTrustDynamicContent" in FDF cert exchange specification. Just like in Acrobat, does not invalidate dynamic documents, just intended to stop viewers from allowing its use on documents which are not trusted for it.
analogous to "kPSSigTrustIdentity" in FDF cert exchange specification. If this flag is not set, all other flags are ignored, and certificate is used only for path building.
analogous to "kPSSigTrustJavaScript" in FDF cert exchange specification. Just like in Acrobat, does not invalidate JavaScript-containing documents, just intended to stop viewers from allowing its use on documents which are not trusted for it.
analogous to "kPSSigTrustSigning" in FDF cert exchange specification. Automatically set even when not specified, just like in Acrobat.
analogous to "kPSSigTrustAnchor" in FDF cert exchange specification. If this flag is set, paths may end with this certificate, and no revocation checks are done for it.