Name

ExtendedRequest

Synopsis

This interface is the base interface for extended requests, which are used to invoke extended operations supported by an LDAP server. An LDAP server/provider will provide specializations of ExtendedRequest that invoke the extended operation on the server. Extended requests are issued to an LDAP server using the LdapContext.extendedOperation() method.

                  
public interface ExtendedRequest extends Serializable {
// Public Instance Methods
   public abstract ExtendedResponse createExtendedResponse(
        String id, byte[] berValue, int offset, 
        int length) throws NamingException;  
   public abstract byte[] getEncodedValue();  
   public abstract String getID();  
}

Implementations

StartTlsRequest

Passed To

InitialLdapContext.extendedOperation(), LdapContext.extendedOperation()

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.