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,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).
This extended request has an OID of 1.3.6.1.4.1.30221.2.6.43 and a value with the following encoding:
NOTE: This class, and other classes within the
com.unboundid.ldap.sdk.unboundidds package 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:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe 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
ConstructorsConstructorDescriptionCreates a new get password quality requirements extended request decoded from the provided generic extended request. -
Method Summary
Modifier and TypeMethodDescriptioncreateAddWithDefaultPasswordPolicyRequest(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.createAddWithSpecifiedPasswordPolicyRequest(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.createAdministrativeResetForSpecifiedUserRequest(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.createSelfChangeForSpecifiedUserRequest(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.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.Creates a new instance of this LDAP request that may be modified without impacting this request.Creates a new instance of this LDAP request that may be modified without impacting this request.Retrieves the user-friendly name for the extended request, if available.Retrieves the target DN for this get password quality requirements request.Retrieves the target type for this get password quality requirements request.process(LDAPConnection connection, int depth) Sends this extended request to the directory server over the provided connection and returns the associated response.voidtoString(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, writeToMethods inherited from class com.unboundid.ldap.sdk.LDAPRequest
followReferrals, getControl, getControlList, getControls, getIntermediateResponseListener, getReferralConnector, getReferralConnectorInternal, getReferralDepth, getResponseTimeoutMillis, hasControl, hasControl, setFollowReferrals, setIntermediateResponseListener, setReferralConnector, setReferralDepth, setResponseTimeoutMillis, toString
-
Field Details
-
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:
-
-
Constructor Details
-
GetPasswordQualityRequirementsExtendedRequest
public GetPasswordQualityRequirementsExtendedRequest(@NotNull 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 Details
-
createAddWithDefaultPasswordPolicyRequest
@NotNull public static GetPasswordQualityRequirementsExtendedRequest createAddWithDefaultPasswordPolicyRequest(@Nullable 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
@NotNull public static GetPasswordQualityRequirementsExtendedRequest createAddWithSpecifiedPasswordPolicyRequest(@NotNull String policyDN, @Nullable 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
@NotNull public static GetPasswordQualityRequirementsExtendedRequest createSelfChangeWithSameAuthorizationIdentityRequest(@Nullable 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
@NotNull public static GetPasswordQualityRequirementsExtendedRequest createSelfChangeForSpecifiedUserRequest(@NotNull String userDN, @Nullable 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
@NotNull public static GetPasswordQualityRequirementsExtendedRequest createAdministrativeResetForSpecifiedUserRequest(@NotNull String userDN, @Nullable 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
Retrieves the target type for this get password quality requirements request.- Returns:
- The target type for this get password quality requirements request.
-
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
@NotNull public GetPasswordQualityRequirementsExtendedResult process(@NotNull 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
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
@NotNull public GetPasswordQualityRequirementsExtendedRequest duplicate(@Nullable 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
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
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.
-