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 boolean
The control's criticality.protected String
The control's object identifier string.protected byte[]
The control's ASN.1 BER encoded value.Fields declared in interface Control
CRITICAL, NONCRITICAL
Modifier and TypeFieldDescriptionstatic final boolean
Indicates a critical control.static final boolean
Indicates 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.boolean
Determines the control's criticality.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
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
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(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 void
wait
(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:
isCritical
in 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:
getEncodedValue
in 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.
-