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 JDAPProtocolOp
This 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 int
ABANDON_REQUEST
static int
ADD_REQUEST
static int
ADD_RESPONSE
static int
BIND_REQUEST
Protocol operation typesstatic int
BIND_RESPONSE
static int
COMPARE_REQUEST
static int
COMPARE_RESPONSE
static int
DEL_REQUEST
static int
DEL_RESPONSE
static int
EXTENDED_REQUEST
static int
EXTENDED_RESPONSE
static int
MODIFY_RDN_REQUEST
static int
MODIFY_RDN_RESPONSE
static int
MODIFY_REQUEST
static int
MODIFY_RESPONSE
static int
SEARCH_REQUEST
static int
SEARCH_RESPONSE
static int
SEARCH_RESULT
static int
SEARCH_RESULT_REFERENCE
static int
UNBIND_REQUEST
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BERElement
getBERElement()
Retrieves the ber representation of the operation.int
getType()
Retrieves the protocol operation type.java.lang.String
toString()
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:
toString
in classjava.lang.Object
- Returns:
- string representation
-
-