|
BEA Systems, Inc. | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
HostnameVerifier provides a callback mechanism so that implementers of this interface can supply a policy for handling the case where the host that's being connected to and the server name from the certificate SubjectDN must match.
To specify an instance of this interface to be used by the server, set the SSL.HostName Verifier field on the SSL tab under Server Configuration in the Administration Console to the name of a class that implements this interface.
Classes implementing this interface must have a public no-arg constructor.
The default implementation of this class in the WebLogic Server will do only a String.equals() comparison of the urlHostname to the certHostname.
HostnameVerification.verify(java.lang.String, java.lang.String)
Method Summary | |
boolean |
verify(java.net.InetAddress addr,
X509 cert)
Deprecated. Verify that the hostname from the URL is an acceptable match with the value from the common name entry in the server certificate's distinguished name. |
boolean |
verify(java.lang.String urlHostname,
java.lang.String certHostname)
Deprecated. Verify that the hostname from the URL is an acceptable match with the value from the common name entry in the server certificate's distinguished name. |
Method Detail |
public boolean verify(java.lang.String urlHostname, java.lang.String certHostname)
urlHostname
- The hostname of the server machine the url points to.certHostname
- The common name entry from the certificate.public boolean verify(java.net.InetAddress addr, X509 cert)
addr
- The InetAddress of the server machine the url points to.cert
- The server certificate from the underlying SSL connection.
|
Documentation is available at http://download.oracle.com/docs/cd/E13222_01/wls/docs81b |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |