Uses of Interface
com.sap.security.core.server.https.HostnameVerifier

Uses of HostnameVerifier in com.sap.security.core.server.https
 

Classes in com.sap.security.core.server.https that implement HostnameVerifier
 class DefaultHostnameVerifier
          This class provides a default implementation of hostname verifier.
 

Methods in com.sap.security.core.server.https with parameters of type HostnameVerifier
 void SecureConnectionFactory.setHostnameVerifier(HostnameVerifier ver)
          Sets the hostname verifier.
If the default verifier doesn't meet the requirements a customised verifier can be used, e.g.
factory.setHostnameVerifier(new HostnameVerifier (){ public boolean verify (String urlHostname, String certHostname ) { // compare the strings on your way return ...; } });
static void Utils.setHostnameVerifier(HttpURLConnection con, HostnameVerifier verifier)