Uses of Interface
org.simpleframework.transport.Certificate
-
Packages that use Certificate Package Description org.simpleframework.http org.simpleframework.http.core org.simpleframework.transport -
-
Uses of Certificate in org.simpleframework.http
Methods in org.simpleframework.http that return Certificate Modifier and Type Method Description CertificateRequest. getClientCertificate()This is used to acquire the SSL certificate used when the server is using a HTTPS connection.CertificateRequestWrapper. getClientCertificate()This is used to acquire the SSL certificate used when the server is using a HTTPS connection. -
Uses of Certificate in org.simpleframework.http.core
Classes in org.simpleframework.http.core that implement Certificate Modifier and Type Class Description (package private) classRequestCertificateTheRequestCertificaterepresents a certificate for an HTTP request.Fields in org.simpleframework.http.core declared as Certificate Modifier and Type Field Description private CertificateRequestCertificate. certificateThis is the raw underlying certificate for the SSL channel.private CertificateRequestCertificate.Challenge. certificateThis is the certificate associated with the SSL connection.private CertificateRequestEntity. certificateThis is the certificate associated with the connection.Methods in org.simpleframework.http.core that return Certificate Modifier and Type Method Description CertificateRequestEntity. getClientCertificate()This is used to acquire the SSL certificate used when the server is using a HTTPS connection.Methods in org.simpleframework.http.core that return types with arguments of type Certificate Modifier and Type Method Description java.util.concurrent.Future<Certificate>RequestCertificate.Challenge. challenge()This method will challenge the client for their certificate.java.util.concurrent.Future<Certificate>RequestCertificate.Challenge. challenge(java.lang.Runnable completion)This method will challenge the client for their certificate. -
Uses of Certificate in org.simpleframework.transport
Classes in org.simpleframework.transport that implement Certificate Modifier and Type Class Description (package private) classNegotiationStateTheNegotiationStaterepresents the certificate that is sent by a client during a secure HTTPS conversation.Fields in org.simpleframework.transport declared as Certificate Modifier and Type Field Description private CertificateSecureTransport. certificateThis is the certificate associated with this SSL connection.private CertificateTransportChannel. certificateThis is the certificate associated with this SSL channel.Fields in org.simpleframework.transport with type parameters of type Certificate Modifier and Type Field Description private java.util.concurrent.RunnableFuture<Certificate>NegotiationState. futureThis is used to hold the completion task for the challenge.Methods in org.simpleframework.transport that return Certificate Modifier and Type Method Description CertificateChannel. getCertificate()This is used to acquire the SSL certificate used for security.CertificateSecureTransport. getCertificate()This is used to acquire the SSL certificate used when the server is using a HTTPS connection.CertificateSocketTransport. getCertificate()This is used to acquire the SSL certificate used when the server is using a HTTPS connection.CertificateTransport. getCertificate()This is used to acquire the SSL certificate used when the server is using a HTTPS connection.CertificateTransportChannel. getCertificate()This is used to acquire the SSL certificate used for security.Methods in org.simpleframework.transport that return types with arguments of type Certificate Modifier and Type Method Description java.util.concurrent.Future<Certificate>CertificateChallenge. challenge()This method will challenge the client for their certificate.java.util.concurrent.Future<Certificate>CertificateChallenge. challenge(java.lang.Runnable completion)This method will challenge the client for their certificate.java.util.concurrent.Future<Certificate>NegotiationState.Challenge. challenge()This method will challenge the client for their certificate.java.util.concurrent.Future<Certificate>NegotiationState.Challenge. challenge(java.lang.Runnable task)This method will challenge the client for their certificate.java.util.concurrent.RunnableFuture<Certificate>NegotiationState. getFuture()This returns the completion task associated with any challenge made for the client certificate.Constructors in org.simpleframework.transport with parameters of type Certificate Constructor Description SecureTransport(Transport transport, Certificate certificate, java.nio.ByteBuffer input, java.nio.ByteBuffer swap)Constructor for theSecureTransportobject.SecureTransport(Transport transport, Certificate certificate, java.nio.ByteBuffer input, java.nio.ByteBuffer swap, int size)Constructor for theSecureTransportobject.
-