Package org.apache.zookeeper.util
Class SecurityUtils
- java.lang.Object
- 
- org.apache.zookeeper.util.SecurityUtils
 
- 
 public final class SecurityUtils extends Object 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringQUORUM_HOSTNAME_PATTERN
 - 
Constructor SummaryConstructors Constructor Description SecurityUtils()
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static SaslClientcreateSaslClient(ZKConfig config, Subject subject, String servicePrincipal, String protocol, String serverName, org.slf4j.Logger LOG, String entity)Create an instance of a SaslClient.static SaslServercreateSaslServer(Subject subject, String protocol, String serverName, CallbackHandler callbackHandler, org.slf4j.Logger LOG)Create an instance of a SaslServer.static StringgetServerPrincipal(String principalConfig, String hostname)Convert Kerberos principal name pattern to valid Kerberos principal name.
 
- 
- 
- 
Field Detail- 
QUORUM_HOSTNAME_PATTERNpublic static final String QUORUM_HOSTNAME_PATTERN - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
createSaslClientpublic static SaslClient createSaslClient(ZKConfig config, Subject subject, String servicePrincipal, String protocol, String serverName, org.slf4j.Logger LOG, String entity) throws SaslException Create an instance of a SaslClient. It will return null if there is an exception.- Parameters:
- subject- subject
- servicePrincipal- principal
- protocol- name of the protocol for which the authentication is being performed
- serverName- name of the server to authenticate to
- LOG- logger
- entity- can be either zookeeper client or quorum learner
- Returns:
- saslclient object
- Throws:
- SaslException
 
 - 
createSaslServerpublic static SaslServer createSaslServer(Subject subject, String protocol, String serverName, CallbackHandler callbackHandler, org.slf4j.Logger LOG) Create an instance of a SaslServer. It will return null if there is an exception.- Parameters:
- subject- subject
- protocol- protocol
- serverName- server name
- callbackHandler- login callback handler
- LOG- logger
- Returns:
- sasl server object
 
 - 
getServerPrincipalpublic static String getServerPrincipal(String principalConfig, String hostname) Convert Kerberos principal name pattern to valid Kerberos principal name. If the principal name contains hostname pattern "_HOST" then it replaces with the given hostname, which should be fully-qualified domain name.- Parameters:
- principalConfig- the Kerberos principal name conf value to convert
- hostname- the fully-qualified domain name used for substitution
- Returns:
- converted Kerberos principal name
 
 
- 
 
-