/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at legal-notices/CDDLv1_0.txt.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2006-2008 Sun Microsystems, Inc.
* Portions copyright 2013 ForgeRock AS.
*/
/**
* This class implements the post-read request control as defined in RFC 4527.
* This control makes it possible to retrieve an entry in the state that it held
* immediately after an add, modify, or modify DN operation. It may specify a
* specific set of attributes that should be included in that entry. The entry
* will be encoded in a corresponding response control.
*/
{
/**
* ControlDecoder implentation to decode this control from a ByteString.
*/
private final static class Decoder implements
{
/**
* {@inheritDoc}
*/
{
{
}
try
{
while (reader.hasNextElement())
{
}
}
{
if (debugEnabled())
{
}
.getMessage());
}
}
{
return OID_LDAP_READENTRY_POSTREAD;
}
}
/**
* The Control Decoder that can be used to decode this control.
*/
new Decoder();
/**
* The tracer object for the debug logger.
*/
// The set of raw attributes to return in the entry.
// The set of processed attributes to return in the entry.
/**
* Creates a new instance of this LDAP post-read request control with the
* provided information.
*
* @param isCritical
* Indicates whether support for this control should be considered a
* critical part of the server processing.
* @param rawAttributes
* The set of raw attributes to return in the entry. A null or empty
* set will indicates that all user attributes should be returned.
*/
{
super(OID_LDAP_READENTRY_POSTREAD, isCritical);
if (rawAttributes == null)
{
}
else
{
this.rawAttributes = rawAttributes;
}
}
/**
* Creates a new instance of this LDAP post-read request control with the
* provided information.
*
* @param oid
* The OID to use for this control.
* @param isCritical
* Indicates whether support for this control should be considered a
* critical part of the server processing.
* @param rawAttributes
* The set of raw attributes to return in the entry. A null or empty
* set will indicates that all user attributes should be returned.
*/
{
super(oid, isCritical);
if (rawAttributes == null)
{
}
else
{
this.rawAttributes = rawAttributes;
}
}
/**
* Writes this control's value to an ASN.1 writer. The value (if any) must be
* written as an ASN1OctetString.
*
* @param writer
* The ASN.1 output stream to write to.
* @throws IOException
* If a problem occurs while writing to the stream.
*/
{
{
if (rawAttributes != null)
{
{
}
}
}
}
/**
* Retrieves the raw, unprocessed set of requested attributes. It must not be
* altered by the caller without calling <CODE>setRawAttributes</CODE> with
* the updated set.
*
* @return The raw, unprocessed set of attributes.
*/
{
return rawAttributes;
}
/**
* Retrieves the set of processed attributes that have been requested for
* inclusion in the entry that is returned.
*
* @return The set of processed attributes that have been requested for
* inclusion in the entry that is returned.
*/
{
if (requestedAttributes == null)
{
}
return requestedAttributes;
}
/**
* Appends a string representation of this LDAP post-read request control to
* the provided buffer.
*
* @param buffer
* The buffer to which the information should be appended.
*/
{
if (!rawAttributes.isEmpty())
{
{
}
}
}
}