1 7 8 package javax.security.sasl; 9 10 70 public abstract interface SaslServer { 71 72 77 public abstract String getMechanismName(); 78 79 102 public abstract byte[] evaluateResponse(byte[] response) 103 throws SaslException ; 104 105 112 public abstract boolean isComplete(); 113 114 121 public String getAuthorizationID(); 122 123 147 public abstract byte[] unwrap(byte[] incoming, int offset, int len) 148 throws SaslException ; 149 150 173 public abstract byte[] wrap(byte[] outgoing, int offset, int len) 174 throws SaslException ; 175 176 187 188 public abstract Object getNegotiatedProperty(String propName); 189 190 197 public abstract void dispose() throws SaslException ; 198 } 199 | Popular Tags |