1 7 8 package javax.security.sasl; 9 10 81 public abstract interface SaslClient { 82 83 88 public abstract String getMechanismName(); 89 90 97 public abstract boolean hasInitialResponse(); 98 99 116 public abstract byte[] evaluateChallenge(byte[] challenge) 117 throws SaslException ; 118 119 128 public abstract boolean isComplete(); 129 130 154 public abstract byte[] unwrap(byte[] incoming, int offset, int len) 155 throws SaslException ; 156 157 181 public abstract byte[] wrap(byte[] outgoing, int offset, int len) 182 throws SaslException ; 183 184 196 197 public abstract Object getNegotiatedProperty(String propName); 198 199 206 public abstract void dispose() throws SaslException ; 207 } 208 | Popular Tags |