Package org.apache.cxf.transport.https
Class CertConstraintsJaxBUtils
java.lang.Object
org.apache.cxf.transport.https.CertConstraintsJaxBUtils
A set of static methods that operate on the generated CertificateConstraintsType.
-
Method Summary
Modifier and TypeMethodDescriptionstatic CertConstraintscreateCertConstraints(org.apache.cxf.configuration.security.CertificateConstraintsType certConstraints) Create a CertConstraints object from a JAXB CertificateConstraintsTypegetIssuerConstraints(org.apache.cxf.configuration.security.CertificateConstraintsType certConstraints) Get a List of Strings that corresponds to the issuer regular expression constraints from a JAXB CertificateConstraintsTypestatic CertConstraints.CombinatorgetIssuerConstraintsCombinator(org.apache.cxf.configuration.security.CertificateConstraintsType certConstraints) Get a (issuer) CertConstrains.Combinator from a JAXB CertificateConstraintsTypegetSubjectConstraints(org.apache.cxf.configuration.security.CertificateConstraintsType certConstraints) Get a List of Strings that corresponds to the subject regular expression constraints from a JAXB CertificateConstraintsTypestatic CertConstraints.CombinatorgetSubjectConstraintsCombinator(org.apache.cxf.configuration.security.CertificateConstraintsType certConstraints) Get a (subject) CertConstrains.Combinator from a JAXB CertificateConstraintsType
-
Method Details
-
createCertConstraints
public static CertConstraints createCertConstraints(org.apache.cxf.configuration.security.CertificateConstraintsType certConstraints) Create a CertConstraints object from a JAXB CertificateConstraintsType -
getSubjectConstraints
public static List<String> getSubjectConstraints(org.apache.cxf.configuration.security.CertificateConstraintsType certConstraints) Get a List of Strings that corresponds to the subject regular expression constraints from a JAXB CertificateConstraintsType -
getIssuerConstraints
public static List<String> getIssuerConstraints(org.apache.cxf.configuration.security.CertificateConstraintsType certConstraints) Get a List of Strings that corresponds to the issuer regular expression constraints from a JAXB CertificateConstraintsType -
getSubjectConstraintsCombinator
public static CertConstraints.Combinator getSubjectConstraintsCombinator(org.apache.cxf.configuration.security.CertificateConstraintsType certConstraints) Get a (subject) CertConstrains.Combinator from a JAXB CertificateConstraintsType -
getIssuerConstraintsCombinator
public static CertConstraints.Combinator getIssuerConstraintsCombinator(org.apache.cxf.configuration.security.CertificateConstraintsType certConstraints) Get a (issuer) CertConstrains.Combinator from a JAXB CertificateConstraintsType
-