| | |
| | | */ |
| | | public byte getType() |
| | | { |
| | | |
| | | return OP_TYPE_UNBIND_REQUEST; |
| | | } |
| | | |
| | |
| | | */ |
| | | public String getProtocolOpName() |
| | | { |
| | | |
| | | return "Unbind Request"; |
| | | } |
| | | |
| | |
| | | */ |
| | | public ASN1Element encode() |
| | | { |
| | | |
| | | return new ASN1Null(OP_TYPE_UNBIND_REQUEST); |
| | | } |
| | | |
| | |
| | | public static UnbindRequestProtocolOp decodeUnbindRequest(ASN1Element element) |
| | | throws LDAPException |
| | | { |
| | | |
| | | try |
| | | { |
| | | element.decodeAsNull(); |
| | |
| | | */ |
| | | public void toString(StringBuilder buffer) |
| | | { |
| | | |
| | | buffer.append("UnbindRequest()"); |
| | | } |
| | | |
| | |
| | | */ |
| | | public void toString(StringBuilder buffer, int indent) |
| | | { |
| | | |
| | | for (int i=0; i < indent; i++) |
| | | { |
| | | buffer.append(' '); |