Class GetPasswordQualityRequirementsExtendedRequest
- java.lang.Object
-
- com.unboundid.ldap.sdk.LDAPRequest
-
- com.unboundid.ldap.sdk.ExtendedRequest
-
- com.unboundid.ldap.sdk.unboundidds.extensions.GetPasswordQualityRequirementsExtendedRequest
-
- All Implemented Interfaces:
ProtocolOp,ReadOnlyLDAPRequest,java.io.Serializable
@NotMutable @ThreadSafety(level=COMPLETELY_THREADSAFE) public final class GetPasswordQualityRequirementsExtendedRequest extends ExtendedRequest
This class provides an implementation of an extended request that may be used to retrieve the set of password quality requirements that the Directory Server will impose for a specified operation, which may include adding a new user (including a password), a user changing his/her own password (a self change), or one user changing the password for another user (an administrative reset).
NOTE: This class, and other classes within the
com.unboundid.ldap.sdk.unboundiddspackage structure, are only supported for use against Ping Identity, UnboundID, and Nokia/Alcatel-Lucent 8661 server products. These classes provide support for proprietary functionality or for external specifications that are not considered stable or mature enough to be guaranteed to work in an interoperable way with other types of LDAP servers.
This extended request has an OID of 1.3.6.1.4.1.30221.2.6.43 and a value with the following encoding:GetPasswordQualityRequirementsRequestValue ::= SEQUENCE { target CHOICE { addWithDefaultPasswordPolicy [0] NULL, addWithSpecifiedPasswordPolicy [1] LDAPDN, selfChangeForAuthorizationIdentity [2] NULL, selfChangeForSpecifiedUser [3] LDAPDN, administrativeResetForUser [4] LDAPDN, ... }, ... }- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringOID_GET_PASSWORD_QUALITY_REQUIREMENTS_REQUESTThe OID (1.3.6.1.4.1.30221.2.6.43) for the get password quality requirements extended request.-
Fields inherited from class com.unboundid.ldap.sdk.ExtendedRequest
TYPE_EXTENDED_REQUEST_OID, TYPE_EXTENDED_REQUEST_VALUE
-
-
Constructor Summary
Constructors Constructor Description GetPasswordQualityRequirementsExtendedRequest(ExtendedRequest r)Creates a new get password quality requirements extended request decoded from the provided generic extended request.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GetPasswordQualityRequirementsExtendedRequestcreateAddWithDefaultPasswordPolicyRequest(Control... controls)Creates a new get password quality requirements extended request that will retrieve the password requirements for an add operation governed by the server's default password policy.static GetPasswordQualityRequirementsExtendedRequestcreateAddWithSpecifiedPasswordPolicyRequest(java.lang.String policyDN, Control... controls)Creates a new get password quality requirements extended request that will retrieve the password requirements for an add operation governed by the specified password policy.static GetPasswordQualityRequirementsExtendedRequestcreateAdministrativeResetForSpecifiedUserRequest(java.lang.String userDN, Control... controls)Creates a new get password quality requirements extended request that will retrieve the password requirements for an administrative reset targeting the specified user.static GetPasswordQualityRequirementsExtendedRequestcreateSelfChangeForSpecifiedUserRequest(java.lang.String userDN, Control... controls)Creates a new get password quality requirements extended request that will retrieve the password requirements for a self change requested by the specified user.static GetPasswordQualityRequirementsExtendedRequestcreateSelfChangeWithSameAuthorizationIdentityRequest(Control... controls)Creates a new get password quality requirements extended request that will retrieve the password requirements for a self change requested with the same authorization identity as this extended request.GetPasswordQualityRequirementsExtendedRequestduplicate()Creates a new instance of this LDAP request that may be modified without impacting this request.GetPasswordQualityRequirementsExtendedRequestduplicate(Control[] controls)Creates a new instance of this LDAP request that may be modified without impacting this request.java.lang.StringgetExtendedRequestName()Retrieves the user-friendly name for the extended request, if available.java.lang.StringgetTargetDN()Retrieves the target DN for this get password quality requirements request.GetPasswordQualityRequirementsTargetTypegetTargetType()Retrieves the target type for this get password quality requirements request.GetPasswordQualityRequirementsExtendedResultprocess(LDAPConnection connection, int depth)Sends this extended request to the directory server over the provided connection and returns the associated response.voidtoString(java.lang.StringBuilder buffer)Appends a string representation of this request to the provided buffer.-
Methods inherited from class com.unboundid.ldap.sdk.ExtendedRequest
encodeProtocolOp, getLastMessageID, getOID, getOperationType, getProtocolOpType, getValue, hasValue, responseReceived, toCode, writeTo
-
Methods inherited from class com.unboundid.ldap.sdk.LDAPRequest
followReferrals, getControl, getControlList, getControls, getIntermediateResponseListener, getReferralConnector, getResponseTimeoutMillis, hasControl, hasControl, setFollowReferrals, setIntermediateResponseListener, setReferralConnector, setResponseTimeoutMillis, toString
-
-
-
-
Field Detail
-
OID_GET_PASSWORD_QUALITY_REQUIREMENTS_REQUEST
public static final java.lang.String OID_GET_PASSWORD_QUALITY_REQUIREMENTS_REQUEST
The OID (1.3.6.1.4.1.30221.2.6.43) for the get password quality requirements extended request.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
GetPasswordQualityRequirementsExtendedRequest
public GetPasswordQualityRequirementsExtendedRequest(ExtendedRequest r) throws LDAPException
Creates a new get password quality requirements extended request decoded from the provided generic extended request.- Parameters:
r- The extended request to decode as a get password quality requirements request.- Throws:
LDAPException- If a problem is encountered while attempting to decoded the provided extended request as a get password quality requirements request.
-
-
Method Detail
-
createAddWithDefaultPasswordPolicyRequest
public static GetPasswordQualityRequirementsExtendedRequest createAddWithDefaultPasswordPolicyRequest(Control... controls)
Creates a new get password quality requirements extended request that will retrieve the password requirements for an add operation governed by the server's default password policy.- Parameters:
controls- The set of controls to include in the request. It may benullor empty if no controls should be included in the request.- Returns:
- A new get password quality requirements extended request that will retrieve the password requirements for an add operation governed by the server's default password policy.
-
createAddWithSpecifiedPasswordPolicyRequest
public static GetPasswordQualityRequirementsExtendedRequest createAddWithSpecifiedPasswordPolicyRequest(java.lang.String policyDN, Control... controls)
Creates a new get password quality requirements extended request that will retrieve the password requirements for an add operation governed by the specified password policy.- Parameters:
policyDN- The DN of the entry that defines the password policy from which to determine the password quality requirements.controls- The set of controls to include in the request. It may benullor empty if no controls should be included in the request.- Returns:
- A new get password quality requirements extended request that will retrieve the password requirements for an add operation governed by the specified password policy.
-
createSelfChangeWithSameAuthorizationIdentityRequest
public static GetPasswordQualityRequirementsExtendedRequest createSelfChangeWithSameAuthorizationIdentityRequest(Control... controls)
Creates a new get password quality requirements extended request that will retrieve the password requirements for a self change requested with the same authorization identity as this extended request.- Parameters:
controls- The set of controls to include in the request. It may benullor empty if no controls should be included in the request.- Returns:
- A new get password quality requirements extended request that will retrieve the password requirements for a self change requested with the same authorization identity as this extended request.
-
createSelfChangeForSpecifiedUserRequest
public static GetPasswordQualityRequirementsExtendedRequest createSelfChangeForSpecifiedUserRequest(java.lang.String userDN, Control... controls)
Creates a new get password quality requirements extended request that will retrieve the password requirements for a self change requested by the specified user.- Parameters:
userDN- The DN of the user for whom to retrieve the self change password requirements.controls- The set of controls to include in the request. It may benullor empty if no controls should be included in the request.- Returns:
- A new get password quality requirements extended request that will retrieve the password requirements for a self change requested by the specified user.
-
createAdministrativeResetForSpecifiedUserRequest
public static GetPasswordQualityRequirementsExtendedRequest createAdministrativeResetForSpecifiedUserRequest(java.lang.String userDN, Control... controls)
Creates a new get password quality requirements extended request that will retrieve the password requirements for an administrative reset targeting the specified user.- Parameters:
userDN- The DN of the user for whom to retrieve the administrative reset password requirements.controls- The set of controls to include in the request. It may benullor empty if no controls should be included in the request.- Returns:
- A new get password quality requirements extended request that will retrieve the password requirements for an administrative reset targeting the specified user.
-
getTargetType
public GetPasswordQualityRequirementsTargetType getTargetType()
Retrieves the target type for this get password quality requirements request.- Returns:
- The target type for this get password quality requirements request.
-
getTargetDN
public java.lang.String getTargetDN()
Retrieves the target DN for this get password quality requirements request. For a request with a target type ofADD_WITH_SPECIFIED_PASSWORD_POLICY, this will be the DN of the password policy from which to obtain the password quality requirements. For a request with a target type of eitherSELF_CHANGE_FOR_SPECIFIED_USERorADMINISTRATIVE_RESET_FOR_SPECIFIED_USER, this will be the DN of the user for which to obtain the password quality requirements. For a request with a target type of eitherADD_WITH_DEFAULT_PASSWORD_POLICYorSELF_CHANGE_FOR_AUTHORIZATION_IDENTITY, no target DN is required and the value returned will benull.- Returns:
- The target DN for this get password quality requirements request.
-
process
public GetPasswordQualityRequirementsExtendedResult process(LDAPConnection connection, int depth) throws LDAPException
Sends this extended request to the directory server over the provided connection and returns the associated response.- Overrides:
processin classExtendedRequest- Parameters:
connection- The connection to use to communicate with the directory server.depth- The current referral depth for this request. It should always be one for the initial request, and should only be incremented when following referrals.- Returns:
- An LDAP result object that provides information about the result of the extended operation processing.
- Throws:
LDAPException- If a problem occurs while sending the request or reading the response.
-
duplicate
public GetPasswordQualityRequirementsExtendedRequest duplicate()
Creates a new instance of this LDAP request that may be modified without impacting this request.. Subclasses should override this method to return a duplicate of the appropriate type.- Specified by:
duplicatein interfaceReadOnlyLDAPRequest- Overrides:
duplicatein classExtendedRequest- Returns:
- A new instance of this LDAP request that may be modified without impacting this request.
-
duplicate
public GetPasswordQualityRequirementsExtendedRequest duplicate(Control[] controls)
Creates a new instance of this LDAP request that may be modified without impacting this request. The provided controls will be used for the new request instead of duplicating the controls from this request.. Subclasses should override this method to return a duplicate of the appropriate type.- Specified by:
duplicatein interfaceReadOnlyLDAPRequest- Overrides:
duplicatein classExtendedRequest- Parameters:
controls- The set of controls to include in the duplicate request.- Returns:
- A new instance of this LDAP request that may be modified without impacting this request.
-
getExtendedRequestName
public java.lang.String getExtendedRequestName()
Retrieves the user-friendly name for the extended request, if available. If no user-friendly name has been defined, then the OID will be returned.- Overrides:
getExtendedRequestNamein classExtendedRequest- Returns:
- The user-friendly name for this extended request, or the OID if no user-friendly name is available.
-
toString
public void toString(java.lang.StringBuilder buffer)
Appends a string representation of this request to the provided buffer.- Specified by:
toStringin interfaceProtocolOp- Specified by:
toStringin interfaceReadOnlyLDAPRequest- Overrides:
toStringin classExtendedRequest- Parameters:
buffer- The buffer to which to append a string representation of this request.
-
-