BEA Systems, Inc.

weblogic.security.SSL
Interface HostnameVerifierJSSE


Deprecated. 9.0.0.0 Replaced by HostnameVerifier

public interface HostnameVerifierJSSE

HostnameVerifierJSSE 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.


Method Summary
 boolean verify(String urlHostname, 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

verify

boolean verify(String urlHostname,
               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. This method won't be called from WebLogic at this time, rather the other, more descriptive method will be. This is a placeholder for a future JSSE-compliant SSL implementation inside WebLogic.

Parameters:
urlHostname - The hostname of the server machine the url points to.
certHostname - The common name entry from the certificate.
Returns:
true if the certificate hostname is acceptable

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs100
Copyright 2006 BEA Systems Inc.