equal
deleted
inserted
replaced
47 * |
47 * |
48 * @param authorizationID A possibly null string representing the principal |
48 * @param authorizationID A possibly null string representing the principal |
49 * for which authorization is being granted; if null, same as |
49 * for which authorization is being granted; if null, same as |
50 * authenticationID |
50 * authenticationID |
51 * @param authenticationID A non-null string representing the principal |
51 * @param authenticationID A non-null string representing the principal |
52 * being authenticated. pw is associated with with this principal. |
52 * being authenticated. pw is associated with this principal. |
53 * @param pw A non-null byte[] containing the password. |
53 * @param pw A non-null byte[] containing the password. |
54 */ |
54 */ |
55 PlainClient(String authorizationID, String authenticationID, byte[] pw) |
55 PlainClient(String authorizationID, String authenticationID, byte[] pw) |
56 throws SaslException { |
56 throws SaslException { |
57 if (authenticationID == null || pw == null) { |
57 if (authenticationID == null || pw == null) { |