@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface InternalConnection extends com.unboundid.ldap.sdk.LDAPInterface
| Modifier and Type | Method and Description |
|---|---|
com.unboundid.ldap.sdk.BindResult |
bind(com.unboundid.ldap.sdk.SimpleBindRequest bindRequest)
Processes the provided bind request.
|
com.unboundid.ldap.sdk.BindResult |
bind(java.lang.String bindDN,
java.lang.String password)
Processes a simple bind request with the provided DN and password.
|
com.unboundid.ldap.sdk.ExtendedResult |
processExtendedOperation(com.unboundid.ldap.sdk.ExtendedRequest extendedRequest)
Processes the provided extended request.
|
com.unboundid.ldap.sdk.ExtendedResult |
processExtendedOperation(java.lang.String requestOID)
Processes an extended operation with the provided request OID.
|
com.unboundid.ldap.sdk.ExtendedResult |
processExtendedOperation(java.lang.String requestOID,
com.unboundid.asn1.ASN1OctetString requestValue)
Processes an extended operation with the provided request OID and value.
|
add, add, add, add, add, add, compare, compare, compare, delete, delete, delete, getEntry, getEntry, getRootDSE, getSchema, getSchema, modify, modify, modify, modify, modify, modify, modifyDN, modifyDN, modifyDN, modifyDN, search, search, search, search, search, search, search, search, search, search, searchForEntry, searchForEntry, searchForEntry, searchForEntry, searchForEntry, searchForEntrycom.unboundid.ldap.sdk.BindResult bind(java.lang.String bindDN, java.lang.String password) throws com.unboundid.ldap.sdk.LDAPException
bindDN - The bind DN for the bind operation.password - The password for the simple bind operation.com.unboundid.ldap.sdk.LDAPException - If the server rejects the bind request, or if a
problem occurs while sending the request or reading
the response.com.unboundid.ldap.sdk.BindResult bind(com.unboundid.ldap.sdk.SimpleBindRequest bindRequest) throws com.unboundid.ldap.sdk.LDAPException
bindRequest - The bind request to be processed. It must not be
null.com.unboundid.ldap.sdk.LDAPException - If the server rejects the bind request, or if a
problem occurs while sending the request or reading
the response.com.unboundid.ldap.sdk.ExtendedResult processExtendedOperation(java.lang.String requestOID) throws com.unboundid.ldap.sdk.LDAPException
requestOID - The OID for the extended request to process. It must
not be null.com.unboundid.ldap.sdk.LDAPException - If a problem occurs while sending the request or
reading the response.com.unboundid.ldap.sdk.ExtendedResult processExtendedOperation(java.lang.String requestOID, com.unboundid.asn1.ASN1OctetString requestValue) throws com.unboundid.ldap.sdk.LDAPException
requestOID - The OID for the extended request to process. It must
not be null.requestValue - The encoded value for the extended request to
process. It may be null if there does not
need to be a value for the requested operation.com.unboundid.ldap.sdk.LDAPException - If a problem occurs while sending the request or
reading the response.com.unboundid.ldap.sdk.ExtendedResult processExtendedOperation(com.unboundid.ldap.sdk.ExtendedRequest extendedRequest) throws com.unboundid.ldap.sdk.LDAPException
extendedRequest - The extended request to be processed. It must not
be null.com.unboundid.ldap.sdk.LDAPException - If a problem occurs while sending the request or
reading the response.