| org.apache.harmony.jndi.provider.ldap.LdapOperation
All known Subclasses: org.apache.harmony.jndi.provider.ldap.BindOp, org.apache.harmony.jndi.provider.ldap.ModifyDNOp, org.apache.harmony.jndi.provider.ldap.AddOp, org.apache.harmony.jndi.provider.ldap.DeleteOp, org.apache.harmony.jndi.provider.ldap.ModifyOp, org.apache.harmony.jndi.provider.ldap.CompareOp, org.apache.harmony.jndi.provider.ldap.ExtendedOp, org.apache.harmony.jndi.provider.ldap.SearchOp,
LdapOperation | public interface LdapOperation (Code) | | The Ldap operation interface, contains methods for getting encodable request
and decoded response.
|
getRequest | public ASN1Encodable getRequest()(Code) | | Get encodable request instance of this operation.
encodable request instance of the operation |
getRequestId | public int getRequestId()(Code) | | Get request index to determine which operation schema to be used.
index of request of this operation |
getResponse | public ASN1Decodable getResponse()(Code) | | Get decodable response instance of this operation.
decodable response instance of this operation |
getResponseId | public int getResponseId()(Code) | | Get response index.
index of response of this operation |
getResult | public LdapResult getResult()(Code) | | Get LdapResult from response. Except unbind and abandon
operation, all ldap operation response contains LdapResult, which
indicate whether the operation is successful or what error occurs.
instance of LdapResult . null ifoperation has not completed or response donesn't contianLDAPResult. |
|
|