Package netscape.ldap.client.opers
Interface JDAPProtocolOp
-
- All Known Implementing Classes:
JDAPAbandonRequest,JDAPAddRequest,JDAPAddResponse,JDAPBindRequest,JDAPBindResponse,JDAPCompareRequest,JDAPCompareResponse,JDAPDeleteRequest,JDAPDeleteResponse,JDAPExtendedRequest,JDAPExtendedResponse,JDAPModifyRDNRequest,JDAPModifyRDNResponse,JDAPModifyRequest,JDAPModifyResponse,JDAPSearchRequest,JDAPSearchResponse,JDAPSearchResult,JDAPSearchResultReference,JDAPUnbindRequest
public interface JDAPProtocolOpThis is the base interface for all protocol operation that is embedded in a JDAPMessage (LDAP Message in RCF1777). Each protocol operation must implement this interface.- Version:
- 1.0
-
-
Field Summary
Fields Modifier and Type Field Description static intABANDON_REQUESTstatic intADD_REQUESTstatic intADD_RESPONSEstatic intBIND_REQUESTProtocol operation typesstatic intBIND_RESPONSEstatic intCOMPARE_REQUESTstatic intCOMPARE_RESPONSEstatic intDEL_REQUESTstatic intDEL_RESPONSEstatic intEXTENDED_REQUESTstatic intEXTENDED_RESPONSEstatic intMODIFY_RDN_REQUESTstatic intMODIFY_RDN_RESPONSEstatic intMODIFY_REQUESTstatic intMODIFY_RESPONSEstatic intSEARCH_REQUESTstatic intSEARCH_RESPONSEstatic intSEARCH_RESULTstatic intSEARCH_RESULT_REFERENCEstatic intUNBIND_REQUEST
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BERElementgetBERElement()Retrieves the ber representation of the operation.intgetType()Retrieves the protocol operation type.java.lang.StringtoString()Retrieves the string representation of the operation.
-
-
-
Field Detail
-
BIND_REQUEST
static final int BIND_REQUEST
Protocol operation types- See Also:
- Constant Field Values
-
BIND_RESPONSE
static final int BIND_RESPONSE
- See Also:
- Constant Field Values
-
UNBIND_REQUEST
static final int UNBIND_REQUEST
- See Also:
- Constant Field Values
-
SEARCH_REQUEST
static final int SEARCH_REQUEST
- See Also:
- Constant Field Values
-
SEARCH_RESPONSE
static final int SEARCH_RESPONSE
- See Also:
- Constant Field Values
-
SEARCH_RESULT
static final int SEARCH_RESULT
- See Also:
- Constant Field Values
-
MODIFY_REQUEST
static final int MODIFY_REQUEST
- See Also:
- Constant Field Values
-
MODIFY_RESPONSE
static final int MODIFY_RESPONSE
- See Also:
- Constant Field Values
-
ADD_REQUEST
static final int ADD_REQUEST
- See Also:
- Constant Field Values
-
ADD_RESPONSE
static final int ADD_RESPONSE
- See Also:
- Constant Field Values
-
DEL_REQUEST
static final int DEL_REQUEST
- See Also:
- Constant Field Values
-
DEL_RESPONSE
static final int DEL_RESPONSE
- See Also:
- Constant Field Values
-
MODIFY_RDN_REQUEST
static final int MODIFY_RDN_REQUEST
- See Also:
- Constant Field Values
-
MODIFY_RDN_RESPONSE
static final int MODIFY_RDN_RESPONSE
- See Also:
- Constant Field Values
-
COMPARE_REQUEST
static final int COMPARE_REQUEST
- See Also:
- Constant Field Values
-
COMPARE_RESPONSE
static final int COMPARE_RESPONSE
- See Also:
- Constant Field Values
-
ABANDON_REQUEST
static final int ABANDON_REQUEST
- See Also:
- Constant Field Values
-
SEARCH_RESULT_REFERENCE
static final int SEARCH_RESULT_REFERENCE
- See Also:
- Constant Field Values
-
EXTENDED_REQUEST
static final int EXTENDED_REQUEST
- See Also:
- Constant Field Values
-
EXTENDED_RESPONSE
static final int EXTENDED_RESPONSE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
int getType()
Retrieves the protocol operation type.- Returns:
- protocol type
-
getBERElement
BERElement getBERElement()
Retrieves the ber representation of the operation.- Returns:
- ber representation
-
toString
java.lang.String toString()
Retrieves the string representation of the operation.- Overrides:
toStringin classjava.lang.Object- Returns:
- string representation
-
-