Uses of Class
javax.security.sasl.SaslException
-
Packages that use SaslException 软件包 描述 javax.security.sasl 包含用于支持SASL的类和接口。 -
-
Uses of SaslException in javax.security.sasl
Subclasses of SaslException in javax.security.sasl Modifier and Type Class 描述 classAuthenticationException由SASL机制实现引发此异常,以指示SASL交换机由于与认证有关的原因(例如无效的身份,密码或密钥)而失败。Methods in javax.security.sasl that throw SaslException Modifier and Type 方法 描述 static SaslClientSasl. createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)使用提供的参数创建一个SaslClient。SaslClientSaslClientFactory. createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)使用提供的参数创建SaslClient。static SaslServerSasl. createSaslServer(String mechanism, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)为指定的机制创建一个SaslServer。SaslServerSaslServerFactory. createSaslServer(String mechanism, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)使用提供的参数创建一个SaslServer。voidSaslClient. dispose()处理SaslClient可能使用的任何系统资源或安全敏感信息。voidSaslServer. dispose()处理SaslServer可能使用的任何系统资源或安全敏感信息。byte[]SaslClient. evaluateChallenge(byte[] challenge)评估挑战数据并产生响应。byte[]SaslServer. evaluateResponse(byte[] response)评估响应数据并产生挑战。byte[]SaslClient. unwrap(byte[] incoming, int offset, int len)解开从服务器接收的字节数组。byte[]SaslServer. unwrap(byte[] incoming, int offset, int len)展开从客户端接收的字节数组。byte[]SaslClient. wrap(byte[] outgoing, int offset, int len)包装要发送到服务器的字节数组。byte[]SaslServer. wrap(byte[] outgoing, int offset, int len)包装要发送给客户端的字节数组。
-