public interface Control extends Serializable
LDAPv3协议使用控件来发送和接收附加数据以影响预定义操作的行为。 控件可以与任何LDAP操作一起发送到服务器。 这些被称为请求控件 。 例如,可以使用LDAP搜索操作发送“排序”控件,以请求以特定顺序返回结果。 被请求和未经请求的控件也可以从服务器的响应返回。 这种控制被称为响应控制 。 例如,LDAP服务器可能会定义一个特殊控件来返回更改通知。
此接口用于表示请求和响应控件。
ControlFactory
Modifier and Type | Field and Description |
---|---|
static boolean |
CRITICAL
表示关键控制。
|
static boolean |
NONCRITICAL
表示非关键控制。
|
Modifier and Type | Method and Description |
---|---|
byte[] |
getEncodedValue()
检索LDAP控制的ASN.1 BER编码值。
|
String |
getID()
检索分配给LDAP控件的对象标识符。
|
boolean |
isCritical()
确定LDAP控件的关键性。
|
static final boolean CRITICAL
static final boolean NONCRITICAL
String getID()
boolean isCritical()
byte[] getEncodedValue()
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.