/*
* 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
* 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
* trunk/opends/resource/legal-notices/OpenDS.LICENSE. 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-2009 Sun Microsystems, Inc.
* Portions Copyright 2011-2012 ForgeRock AS
*/
/**
* This class implements the "Who Am I?" extended operation defined in RFC 4532.
* It simply returns the authorized ID of the currently-authenticated user.
*/
public class WhoAmIExtendedOperation
{
/**
* The tracer object for the debug logger.
*/
// The default set of supported control OIDs for this extended
/**
* Create an instance of this "Who Am I?" extended operation. All
* initialization should be performed in the
* <CODE>initializeExtendedOperationHandler</CODE> method.
*/
public WhoAmIExtendedOperation()
{
super();
}
/**
* Initializes this extended operation handler based on the information in the
* provided configuration entry. It should also register itself with the
* Directory Server for the particular kinds of extended operations that it
* will process.
*
* @param config The configuration that contains the information
* to use to initialize this extended operation handler.
*
* @throws ConfigException If an unrecoverable problem arises in the
* process of performing the initialization.
*
* @throws InitializationException If a problem occurs during initialization
* that is not related to the server
* configuration.
*/
public void initializeExtendedOperationHandler(
{
}
/**
* Performs any finalization that may be necessary for this extended
* operation handler. By default, no finalization is performed.
*/
@Override()
public void finalizeExtendedOperationHandler()
{
}
/**
* {@inheritDoc}
*/
@Override()
{
return supportedControlOIDs;
}
/**
* {@inheritDoc}
*/
@Override()
{
// Process any supported controls for this operation, including the
// proxied authorization control.
try
{
{
// The requester must have the PROXIED_AUTH privilige in order to
// be able to use this control.
{
return;
}
if(proxyControlV2 != null)
{
}
else
{
// Log usage of legacy proxy authz V1 control.
"obsoleteProxiedAuthzV1Control"));
}
}
}
catch (DirectoryException de)
{
if (debugEnabled())
{
}
return;
}
// Get the authorization DN for the operation and add it to the response
// value.
{
authzID = "";
}
else
{
}
}
/**
* {@inheritDoc}
*/
{
return "Who Am I?";
}
}