equal
deleted
inserted
replaced
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
2 <html> |
2 <html> |
3 <head> |
3 <head> |
4 <!-- |
4 <!-- |
5 Copyright (c) 1999, 2006, Oracle and/or its affiliates. All rights reserved. |
5 Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved. |
6 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
6 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
7 |
7 |
8 This code is free software; you can redistribute it and/or modify it |
8 This code is free software; you can redistribute it and/or modify it |
9 under the terms of the GNU General Public License version 2 only, as |
9 under the terms of the GNU General Public License version 2 only, as |
10 published by the Free Software Foundation. Oracle designates this |
10 published by the Free Software Foundation. Oracle designates this |
46 <a href=http://www.ietf.org/rfc/rfc2251.txt>RFC 2251</a>. |
46 <a href=http://www.ietf.org/rfc/rfc2251.txt>RFC 2251</a>. |
47 The core interface in this package is <code>LdapContext</code>, which defines |
47 The core interface in this package is <code>LdapContext</code>, which defines |
48 methods on a context for performing extended operations and handling |
48 methods on a context for performing extended operations and handling |
49 controls. |
49 controls. |
50 |
50 |
51 <h3>Extended Operations</h3> |
51 <h2>Extended Operations</h2> |
52 <p> |
52 <p> |
53 This package defines the interface <code>ExtendedRequest</code> |
53 This package defines the interface <code>ExtendedRequest</code> |
54 to represent the argument to an extended operation, |
54 to represent the argument to an extended operation, |
55 and the interface <code>ExtendedResponse</code> to represent the result |
55 and the interface <code>ExtendedResponse</code> to represent the result |
56 of the extended operation. |
56 of the extended operation. |
123 return GETTIME_RESP_OID; |
123 return GETTIME_RESP_OID; |
124 } |
124 } |
125 } |
125 } |
126 </pre></blockquote> |
126 </pre></blockquote> |
127 |
127 |
128 <h3>Controls</h3> |
128 <h2>Controls</h2> |
129 |
129 |
130 This package defines the interface <code>Control</code> to represent an LDAPv3 |
130 This package defines the interface <code>Control</code> to represent an LDAPv3 |
131 control. It can be a control that is sent to an LDAP server |
131 control. It can be a control that is sent to an LDAP server |
132 (<em>request control</em>) or a control returned by an LDAP server |
132 (<em>request control</em>) or a control returned by an LDAP server |
133 (<em>response control</em>). Unlike extended requests and responses, |
133 (<em>response control</em>). Unlike extended requests and responses, |