com.unboundid.ldap.sdk.controls.AuthorizationIdentityResponseControl Maven / Gradle / Ivy
/*
* Copyright 2007-2019 Ping Identity Corporation
* All Rights Reserved.
*/
/*
* Copyright (C) 2008-2019 Ping Identity Corporation
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License (GPLv2 only)
* or the terms of the GNU Lesser General Public License (LGPLv2.1 only)
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see .
*/
package com.unboundid.ldap.sdk.controls;
import com.unboundid.asn1.ASN1OctetString;
import com.unboundid.ldap.sdk.BindResult;
import com.unboundid.ldap.sdk.Control;
import com.unboundid.ldap.sdk.DecodeableControl;
import com.unboundid.ldap.sdk.LDAPException;
import com.unboundid.ldap.sdk.ResultCode;
import com.unboundid.util.NotMutable;
import com.unboundid.util.ThreadSafety;
import com.unboundid.util.ThreadSafetyLevel;
import com.unboundid.util.Validator;
import static com.unboundid.ldap.sdk.controls.ControlMessages.*;
/**
* This class provides an implementation of the authorization identity bind
* response control as defined in
* RFC 3829. It may be used
* to provide the primary authorization identity associated with the client
* connection after processing of the associated bind operation has completed.
*
* The authorization identity value returned may be empty if the resulting
* authorization identity is that of the anonymous user. Otherwise, it should
* be an "authzId" value as described in section 5.2.1.8 of
* RFC 4513. That is, it
* should be either "dn:" followed by the distinguished name of the target user,
* or "u:" followed by the username.
*
* Note that the authorization identity response control should only be included
* in a bind response message if the corresponding request included the
* {@link AuthorizationIdentityRequestControl}, and only if the bind was
* successful.
*/
@NotMutable()
@ThreadSafety(level=ThreadSafetyLevel.COMPLETELY_THREADSAFE)
public final class AuthorizationIdentityResponseControl
extends Control
implements DecodeableControl
{
/**
* The OID (2.16.840.1.113730.3.4.15) for the authorization identity response
* control.
*/
public static final String AUTHORIZATION_IDENTITY_RESPONSE_OID =
"2.16.840.1.113730.3.4.15";
/**
* The serial version UID for this serializable class.
*/
private static final long serialVersionUID = -6315724175438820336L;
// The authorization ID string returned by the server.
private final String authorizationID;
/**
* Creates a new empty control instance that is intended to be used only for
* decoding controls via the {@code DecodeableControl} interface.
*/
AuthorizationIdentityResponseControl()
{
authorizationID = null;
}
/**
* Creates a new authorization identity response control with the provided
* authorization ID.
*
* @param authorizationID The authorization identity associated with the
* client connection. It must not be {@code null},
* although it may be a zero-length string to
* indicate that the authorization identity is the
* anonymous user.
*/
public AuthorizationIdentityResponseControl(final String authorizationID)
{
super(AUTHORIZATION_IDENTITY_RESPONSE_OID, false,
new ASN1OctetString(authorizationID));
Validator.ensureNotNull(authorizationID);
this.authorizationID = authorizationID;
}
/**
* Creates a new authorization identity response control with the provided
* information.
*
* @param oid The OID for the control.
* @param isCritical Indicates whether the control should be marked
* critical.
* @param value The encoded value for the control. This may be
* {@code null} if no value was provided.
*
* @throws LDAPException If the provided control cannot be decoded as an
* authorization identity response control.
*/
public AuthorizationIdentityResponseControl(final String oid,
final boolean isCritical,
final ASN1OctetString value)
throws LDAPException
{
super(oid, isCritical, value);
if (value == null)
{
throw new LDAPException(ResultCode.DECODING_ERROR,
ERR_AUTHZID_RESPONSE_NO_VALUE.get());
}
else
{
authorizationID = value.stringValue();
}
}
/**
* {@inheritDoc}
*/
@Override()
public AuthorizationIdentityResponseControl
decodeControl(final String oid, final boolean isCritical,
final ASN1OctetString value)
throws LDAPException
{
return new AuthorizationIdentityResponseControl(oid, isCritical, value);
}
/**
* Extracts an authorization identity response control from the provided
* result.
*
* @param result The result from which to retrieve the authorization
* identity response control.
*
* @return The authorization identity response control contained in the
* provided result, or {@code null} if the result did not contain an
* authorization identity response control.
*
* @throws LDAPException If a problem is encountered while attempting to
* decode the authorization identity response control
* contained in the provided result.
*/
public static AuthorizationIdentityResponseControl
get(final BindResult result)
throws LDAPException
{
final Control c =
result.getResponseControl(AUTHORIZATION_IDENTITY_RESPONSE_OID);
if (c == null)
{
return null;
}
if (c instanceof AuthorizationIdentityResponseControl)
{
return (AuthorizationIdentityResponseControl) c;
}
else
{
return new AuthorizationIdentityResponseControl(c.getOID(),
c.isCritical(), c.getValue());
}
}
/**
* Retrieves the authorization ID string for this authorization identity
* response control. It may be a zero-length string if the associated
* authorization identity is that of the anonymous user.
*
* @return The authorization ID string for this authorization identity
* response control.
*/
public String getAuthorizationID()
{
return authorizationID;
}
/**
* {@inheritDoc}
*/
@Override()
public String getControlName()
{
return INFO_CONTROL_NAME_AUTHZID_RESPONSE.get();
}
/**
* {@inheritDoc}
*/
@Override()
public void toString(final StringBuilder buffer)
{
buffer.append("AuthorizationIdentityResponseControl(authorizationID='");
buffer.append(authorizationID);
buffer.append("', isCritical=");
buffer.append(isCritical());
buffer.append(')');
}
}