jdk/src/java.security.sasl/share/classes/com/sun/security/sasl/PlainClient.java
changeset 28059 e576535359cc
parent 25859 3317bb8137f4
child 32275 17eeb583a331
equal deleted inserted replaced
28058:87940c838900 28059:e576535359cc
    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) {