Uses of Class
org.apache.pdfbox.pdmodel.encryption.SecurityHandler
-
Packages that use SecurityHandler Package Description org.apache.pdfbox.pdfparser The pdfparser package contains classes to parse PDF documents and objects within the document.org.apache.pdfbox.pdmodel.encryption The encryption package will handle the PDF document security handlers and the functionality of pluggable security handlers. -
-
Uses of SecurityHandler in org.apache.pdfbox.pdfparser
Fields in org.apache.pdfbox.pdfparser declared as SecurityHandler Modifier and Type Field Description protected SecurityHandler
COSParser. securityHandler
The security handler. -
Uses of SecurityHandler in org.apache.pdfbox.pdmodel.encryption
Subclasses of SecurityHandler in org.apache.pdfbox.pdmodel.encryption Modifier and Type Class Description class
PublicKeySecurityHandler
This class implements the public key security handler described in the PDF specification.class
StandardSecurityHandler
The standard security handler.Fields in org.apache.pdfbox.pdmodel.encryption declared as SecurityHandler Modifier and Type Field Description private SecurityHandler
PDEncryption. securityHandler
Fields in org.apache.pdfbox.pdmodel.encryption with type parameters of type SecurityHandler Modifier and Type Field Description private java.util.Map<java.lang.String,java.lang.Class<? extends SecurityHandler>>
SecurityHandlerFactory. nameToHandler
private java.util.Map<java.lang.Class<? extends ProtectionPolicy>,java.lang.Class<? extends SecurityHandler>>
SecurityHandlerFactory. policyToHandler
Methods in org.apache.pdfbox.pdmodel.encryption that return SecurityHandler Modifier and Type Method Description SecurityHandler
PDEncryption. getSecurityHandler()
Returns the security handler specified in the dictionary's Filter entry.private SecurityHandler
SecurityHandlerFactory. newSecurityHandler(java.lang.Class<? extends SecurityHandler> handlerClass, java.lang.Class<?>[] argsClasses, java.lang.Object[] args)
SecurityHandler
SecurityHandlerFactory. newSecurityHandlerForFilter(java.lang.String name)
Returns a new security handler for the given Filter name, or null none is available.SecurityHandler
SecurityHandlerFactory. newSecurityHandlerForPolicy(ProtectionPolicy policy)
Returns a new security handler for the given protection policy, or null none is available.Methods in org.apache.pdfbox.pdmodel.encryption with parameters of type SecurityHandler Modifier and Type Method Description void
PDEncryption. setSecurityHandler(SecurityHandler securityHandler)
Sets the security handler used in this encryption dictionaryMethod parameters in org.apache.pdfbox.pdmodel.encryption with type arguments of type SecurityHandler Modifier and Type Method Description private SecurityHandler
SecurityHandlerFactory. newSecurityHandler(java.lang.Class<? extends SecurityHandler> handlerClass, java.lang.Class<?>[] argsClasses, java.lang.Object[] args)
void
SecurityHandlerFactory. registerHandler(java.lang.String name, java.lang.Class<? extends SecurityHandler> securityHandler, java.lang.Class<? extends ProtectionPolicy> protectionPolicy)
Registers a security handler.
-