Class BasicControl
java.lang.Object
javax.naming.ldap.BasicControl
- All Implemented Interfaces:
- Serializable,- Control
- Direct Known Subclasses:
- ManageReferralControl,- PagedResultsControl,- PagedResultsResponseControl,- SortControl,- SortResponseControl
- 
Field SummaryFieldsModifier 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 javax.naming.ldap.ControlCRITICAL, NONCRITICAL
- 
Constructor SummaryConstructorsConstructorDescriptionBasicControl(String id) Constructs a non-critical control.BasicControl(String id, boolean criticality, byte[] value) Constructs a control using the supplied arguments.
- 
Method SummaryModifier and TypeMethodDescriptionbyte[]Retrieves the control's ASN.1 BER encoded value.getID()Retrieves the control's object identifier string.booleanDetermines the control's criticality.
- 
Field Details- 
idThe control's object identifier string.
- 
criticalityprotected boolean criticalityThe control's criticality.
- 
valueprotected byte[] valueThe control's ASN.1 BER encoded value.
 
- 
- 
Constructor Details- 
BasicControlConstructs a non-critical control.- Parameters:
- id- The control's object identifier string.
 
- 
BasicControlConstructs 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
- 
isCriticalpublic boolean isCritical()Determines the control's criticality.- Specified by:
- isCriticalin interface- Control
- Returns:
- true if the control is critical; false otherwise.
 
- 
getEncodedValuepublic 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 interface- Control
- 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.
 
 
-