Package org.apache.cxf.transport.https


package org.apache.cxf.transport.https
  • Class
    Description
    KeyManager to select a key with desired alias while delegating processing to specified KeyManager Can be used both with server and client sockets
    This class represents a set of constraints that can be placed on an X.509 certificate, in the form of a regular expression on a SubjectDN or IssuerDN.
     
    <jaxws:endpoint ...> <jaxws:features> <bean class="org.apache.cxf.transport.https.CertConstraintsFeature"> <property name="CertificateConstraints"> <bean class="org.apache.cxf.configuration.security.CertificateConstraintsType"> <property name="SubjectDNConstraints"> <bean class="org.apache.cxf.configuration.security.DNConstraintsType"> <property name="RegularExpression"> <list> <value>.*CN=(Bethal|Gordy).*</value> <value>.*O=ApacheTest.*</value> </list> </property> </bean> </property> ......... </bean> </property> </bean> </jaxws:features> </jaxws:endpoint>
     
    An interceptor that enforces certificate constraints logic at the TLS layer.
    A set of static methods that operate on the generated CertificateConstraintsType.
    This HttpsURLConnectionFactory implements the HttpURLConnectionFactory for using the given SSL Policy to configure TLS connections for "https:" URLs.
    This class holds information about the HttpsURLConnection.
    This class provides a static method to create an array of TrustManagers, which disables TLS trust verification.