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 Certificate
Request. getClientCertificate()
This is used to acquire the SSL certificate used when the server is using a HTTPS connection.Certificate
RequestWrapper. 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) class
RequestCertificate
TheRequestCertificate
represents a certificate for an HTTP request.Fields in org.simpleframework.http.core declared as Certificate Modifier and Type Field Description private Certificate
RequestCertificate. certificate
This is the raw underlying certificate for the SSL channel.private Certificate
RequestCertificate.Challenge. certificate
This is the certificate associated with the SSL connection.private Certificate
RequestEntity. certificate
This is the certificate associated with the connection.Methods in org.simpleframework.http.core that return Certificate Modifier and Type Method Description Certificate
RequestEntity. 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) class
NegotiationState
TheNegotiationState
represents 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 Certificate
SecureTransport. certificate
This is the certificate associated with this SSL connection.private Certificate
TransportChannel. certificate
This 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. future
This is used to hold the completion task for the challenge.Methods in org.simpleframework.transport that return Certificate Modifier and Type Method Description Certificate
Channel. getCertificate()
This is used to acquire the SSL certificate used for security.Certificate
SecureTransport. getCertificate()
This is used to acquire the SSL certificate used when the server is using a HTTPS connection.Certificate
SocketTransport. getCertificate()
This is used to acquire the SSL certificate used when the server is using a HTTPS connection.Certificate
Transport. getCertificate()
This is used to acquire the SSL certificate used when the server is using a HTTPS connection.Certificate
TransportChannel. 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 theSecureTransport
object.SecureTransport(Transport transport, Certificate certificate, java.nio.ByteBuffer input, java.nio.ByteBuffer swap, int size)
Constructor for theSecureTransport
object.
-