![JAR search and dependency download from the Maven repository](/logo.png)
com.unboundid.ldap.sdk.LDAPExtendedOperationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unboundid-ldapsdk-commercial-edition Show documentation
Show all versions of unboundid-ldapsdk-commercial-edition Show documentation
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 Commercial Edition of the LDAP SDK, which includes
all of the general-purpose functionality contained in the Standard
Edition, plus additional functionality specific to UnboundID server
products.
The newest version!
/*
* Copyright 2015-2017 UnboundID Corp.
* All Rights Reserved.
*/
/*
* Copyright (C) 2015-2017 UnboundID Corp.
*
* 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;
import com.unboundid.asn1.ASN1OctetString;
import com.unboundid.util.NotExtensible;
import com.unboundid.util.NotMutable;
import com.unboundid.util.ThreadSafety;
import com.unboundid.util.ThreadSafetyLevel;
/**
* This class defines an exception that can be thrown if the server returns an
* extended response that indicates that the operation did not complete
* successfully. This may be used to obtain access to any response OID and/or
* value that may have been included in the extended result.
*/
@NotExtensible()
@NotMutable()
@ThreadSafety(level=ThreadSafetyLevel.COMPLETELY_THREADSAFE)
public class LDAPExtendedOperationException
extends LDAPException
{
/**
* The serial version UID for this serializable class.
*/
private static final long serialVersionUID = -5674215690199642408L;
// The extended result for this exception.
private final ExtendedResult extendedResult;
/**
* Creates a new LDAP extended operation exception from the provided extended
* result.
*
* @param extendedResult The extended result to use to create this
* exception.
*/
public LDAPExtendedOperationException(final ExtendedResult extendedResult)
{
super(extendedResult);
this.extendedResult = extendedResult;
}
/**
* {@inheritDoc}
*/
@Override()
public LDAPResult toLDAPResult()
{
return extendedResult;
}
/**
* Retrieves the extended result that was returned by the server.
*
* @return The extended result that was returned by the server.
*/
public ExtendedResult getExtendedResult()
{
return extendedResult;
}
/**
* Retrieves the response OID from the extended result, if any.
*
* @return The response OID from the extended result, or {@code null} if the
* result did not include an OID.
*/
public String getResponseOID()
{
return extendedResult.getOID();
}
/**
* Retrieves the response value from the extended result, if any.
*
* @return The response value from the extended result, or {@code null} if
* the result did not include a value.
*/
public ASN1OctetString getResponseValue()
{
return extendedResult.getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy