Interface PasswordPolicy

    • Method Detail

      • hasResponse

        boolean hasResponse()
        Checks whether this Control is the password policy request or the response by carrying with it an IPasswordPolicyResponse object. If it is a request, then no response component will be associated with the control: getResponse() will return null.
        Returns:
        true if this Control carries a response, false if it is a request
      • setResponse

        void setResponse​(PasswordPolicyResponse response)
        Sets the response. If null hasResponse() will return null and this will be handled as a password policy request control rather than a response control.
        Parameters:
        response - a valid response object, or null to make this a request
      • setResponse

        PasswordPolicyResponse setResponse​(boolean hasResponse)
        If true sets the response to a default newly initialized response object. If this was previously a request, it automatically becomes a response. If it was not a request with an already existing response object then that response is replace with a new one and the old is returned. If false then any response object set will be cleared to null. Effectively this will cause hasResponse() to return whatever you plug into it.
        Parameters:
        hasResponse - true to create default response, false to clear it
        Returns:
        the old response object, if one did not exist null is returned