All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.unboundid.ldap.sdk.controls.PostReadResponseControl Maven / Gradle / Ivy

Go to download

The UnboundID LDAP SDK for Java is a fast, comprehensive, and easy-to-use Java API for communicating with LDAP directory servers and performing related tasks like reading and writing LDIF, encoding and decoding data using base64 and ASN.1 BER, and performing secure communication. This package contains the Standard Edition of the LDAP SDK, which is a complete, general-purpose library for communicating with LDAPv3 directory servers.

There is a newer version: 7.0.1
Show newest version
/*
 * Copyright 2007-2018 Ping Identity Corporation
 * All Rights Reserved.
 */
/*
 * Copyright (C) 2008-2018 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 java.util.ArrayList;
import java.util.Collection;

import com.unboundid.asn1.ASN1Element;
import com.unboundid.asn1.ASN1Exception;
import com.unboundid.asn1.ASN1OctetString;
import com.unboundid.asn1.ASN1Sequence;
import com.unboundid.ldap.sdk.Attribute;
import com.unboundid.ldap.sdk.Control;
import com.unboundid.ldap.sdk.DecodeableControl;
import com.unboundid.ldap.sdk.LDAPException;
import com.unboundid.ldap.sdk.LDAPResult;
import com.unboundid.ldap.sdk.ReadOnlyEntry;
import com.unboundid.ldap.sdk.ResultCode;
import com.unboundid.util.Debug;
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 LDAP post-read response control
 * as defined in RFC 4527.  It
 * may be used to return a copy of the target entry immediately after processing
 * an add, modify, or modify DN operation.
 * 

* If the corresponding add, modify, or modify DN request included the * {@link PostReadRequestControl} and the operation was successful, then the * response for that operation should include the post-read response control * with a read-only copy of the entry as it appeared immediately after * processing the request. If the operation was not successful, then the * post-read response control will not be returned. */ @NotMutable() @ThreadSafety(level=ThreadSafetyLevel.COMPLETELY_THREADSAFE) public final class PostReadResponseControl extends Control implements DecodeableControl { /** * The OID (1.3.6.1.1.13.2) for the post-read response control. */ public static final String POST_READ_RESPONSE_OID = "1.3.6.1.1.13.2"; /** * The serial version UID for this serializable class. */ private static final long serialVersionUID = -6918729231330354924L; // The entry returned in the response control. private final ReadOnlyEntry entry; /** * Creates a new empty control instance that is intended to be used only for * decoding controls via the {@code DecodeableControl} interface. */ PostReadResponseControl() { entry = null; } /** * Creates a new post-read response control including the provided entry. * * @param entry The entry to include in this post-read response control. It * must not be {@code null}. */ public PostReadResponseControl(final ReadOnlyEntry entry) { super(POST_READ_RESPONSE_OID, false, encodeValue(entry)); this.entry = entry; } /** * Creates a new post-read 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 a * post-read response control. */ public PostReadResponseControl(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_POST_READ_RESPONSE_NO_VALUE.get()); } final ASN1Sequence entrySequence; try { final ASN1Element entryElement = ASN1Element.decode(value.getValue()); entrySequence = ASN1Sequence.decodeAsSequence(entryElement); } catch (final ASN1Exception ae) { Debug.debugException(ae); throw new LDAPException(ResultCode.DECODING_ERROR, ERR_POST_READ_RESPONSE_VALUE_NOT_SEQUENCE.get(ae), ae); } final ASN1Element[] entryElements = entrySequence.elements(); if (entryElements.length != 2) { throw new LDAPException(ResultCode.DECODING_ERROR, ERR_POST_READ_RESPONSE_INVALID_ELEMENT_COUNT.get( entryElements.length)); } final String dn = ASN1OctetString.decodeAsOctetString(entryElements[0]).stringValue(); final ASN1Sequence attrSequence; try { attrSequence = ASN1Sequence.decodeAsSequence(entryElements[1]); } catch (final ASN1Exception ae) { Debug.debugException(ae); throw new LDAPException(ResultCode.DECODING_ERROR, ERR_POST_READ_RESPONSE_ATTRIBUTES_NOT_SEQUENCE.get(ae), ae); } final ASN1Element[] attrElements = attrSequence.elements(); final Attribute[] attrs = new Attribute[attrElements.length]; for (int i=0; i < attrElements.length; i++) { try { attrs[i] = Attribute.decode(ASN1Sequence.decodeAsSequence(attrElements[i])); } catch (final ASN1Exception ae) { Debug.debugException(ae); throw new LDAPException(ResultCode.DECODING_ERROR, ERR_POST_READ_RESPONSE_ATTR_NOT_SEQUENCE.get(ae), ae); } } entry = new ReadOnlyEntry(dn, attrs); } /** * {@inheritDoc} */ @Override() public PostReadResponseControl decodeControl(final String oid, final boolean isCritical, final ASN1OctetString value) throws LDAPException { return new PostReadResponseControl(oid, isCritical, value); } /** * Extracts a post-read response control from the provided result. * * @param result The result from which to retrieve the post-read response * control. * * @return The post-read response control contained in the provided result, * or {@code null} if the result did not contain a post-read response * control. * * @throws LDAPException If a problem is encountered while attempting to * decode the post-read response control contained in * the provided result. */ public static PostReadResponseControl get(final LDAPResult result) throws LDAPException { final Control c = result.getResponseControl(POST_READ_RESPONSE_OID); if (c == null) { return null; } if (c instanceof PostReadResponseControl) { return (PostReadResponseControl) c; } else { return new PostReadResponseControl(c.getOID(), c.isCritical(), c.getValue()); } } /** * Encodes the provided information into an octet string that can be used as * the value for this control. * * @param entry The entry to include in this post-read response control. It * must not be {@code null}. * * @return An ASN.1 octet string that can be used as the value for this * control. */ private static ASN1OctetString encodeValue(final ReadOnlyEntry entry) { Validator.ensureNotNull(entry); final Collection attrs = entry.getAttributes(); final ArrayList attrElements = new ArrayList<>(attrs.size()); for (final Attribute a : attrs) { attrElements.add(a.encode()); } final ASN1Element[] entryElements = { new ASN1OctetString(entry.getDN()), new ASN1Sequence(attrElements) }; return new ASN1OctetString(new ASN1Sequence(entryElements).encode()); } /** * Retrieves a read-only copy of the entry returned by this post-read response * control. * * @return A read-only copy of the entry returned by this post-read response * control. */ public ReadOnlyEntry getEntry() { return entry; } /** * {@inheritDoc} */ @Override() public String getControlName() { return INFO_CONTROL_NAME_POST_READ_RESPONSE.get(); } /** * {@inheritDoc} */ @Override() public void toString(final StringBuilder buffer) { buffer.append("PostReadResponseControl(entry="); entry.toString(buffer); buffer.append(", isCritical="); buffer.append(isCritical()); buffer.append(')'); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy