Class BasicControl
java.lang.Object
javax.naming.ldap.BasicControl
- All Implemented Interfaces:
Serializable, Control
- Direct Known Subclasses:
ManageReferralControl, PagedResultsControl, PagedResultsResponseControl, SortControl, SortResponseControl
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected booleanThe control's criticality.protected StringThe control's object identifier string.protected byte[]The control's ASN.1 BER encoded value.Fields declared in interface Control
CRITICAL, NONCRITICALModifier and TypeFieldDescriptionstatic final booleanIndicates a critical control.static final booleanIndicates a non-critical control. -
Constructor Summary
ConstructorsConstructorDescriptionBasicControl(String id) Constructs a non-critical control.BasicControl(String id, boolean criticality, byte[] value) Constructs a control using the supplied arguments. -
Method Summary
Modifier and TypeMethodDescriptionbyte[]Retrieves the control's ASN.1 BER encoded value.getID()Retrieves the control's object identifier string.booleanDetermines the control's criticality.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
id
The control's object identifier string. -
criticality
protected boolean criticalityThe control's criticality. -
value
protected byte[] valueThe control's ASN.1 BER encoded value.
-
-
Constructor Details
-
BasicControl
Constructs a non-critical control.- Parameters:
id- The control's object identifier string.
-
BasicControl
Constructs a control using the supplied arguments.- Parameters:
id- The control's object identifier string.criticality- The control's criticality.value- The control's ASN.1 BER encoded value. It is not cloned - any changes to value will affect the contents of the control. It may be null.
-
-
Method Details
-
getID
-
isCritical
public boolean isCritical()Determines the control's criticality.- Specified by:
isCriticalin interfaceControl- Returns:
- true if the control is critical; false otherwise.
-
getEncodedValue
public byte[] getEncodedValue()Retrieves the control's ASN.1 BER encoded value. The result includes the BER tag and length for the control's value but does not include the control's object identifier and criticality setting.- Specified by:
getEncodedValuein interfaceControl- Returns:
- A possibly null byte array representing the control's ASN.1 BER encoded value. It is not cloned - any changes to the returned value will affect the contents of the control.
-