Uses of Class
org.forgerock.opendj.ldap.DecodeOptions
-
Packages that use DecodeOptions Package Description org.forgerock.opendj.io Classes and interfaces providing I/O functionality.org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes.org.forgerock.opendj.ldap.controls Classes and interfaces for common LDAP controls.org.forgerock.opendj.ldap.messages Classes and interfaces for core LDAP requests/responses. -
-
Uses of DecodeOptions in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io with parameters of type DecodeOptions Modifier and Type Method Description static LdapReader
Ldap. getReader(Asn1Reader asn1Reader, DecodeOptions options)
Creates a new LDAP reader which will read LDAP messages from an ASN.1 reader using the provided decoding options.static Attribute
Ldap. readAttribute(Asn1Reader reader, DecodeOptions options, Schema schema)
Reads the next ASN.1 element from the providedASN1Reader
as anAttribute
.static Entry
Ldap. readEntry(Asn1Reader reader, DecodeOptions options)
Reads the next ASN.1 element from the providedASN1Reader
as anEntry
.static Modification
Ldap. readModification(Asn1Reader reader, DecodeOptions options, Schema schema)
Reads the next ASN.1 element from the providedASN1Reader
as aModification
. -
Uses of DecodeOptions in org.forgerock.opendj.ldap
Fields in org.forgerock.opendj.ldap with type parameters of type DecodeOptions Modifier and Type Field Description static Option<DecodeOptions>
CommonLdapOptions. DECODE_OPTIONS
Sets the decoding options which will be used to control how requests and responses are decoded.static Option<DecodeOptions>
CommonLdapOptions. DECODE_OPTIONS
Sets the decoding options which will be used to control how requests and responses are decoded.static Option<DecodeOptions>
CommonLdapOptions. DECODE_OPTIONS
Sets the decoding options which will be used to control how requests and responses are decoded.Methods in org.forgerock.opendj.ldap that return DecodeOptions Modifier and Type Method Description DecodeOptions
DecodeOptions. setAttributeFactory(Function<AttributeDescription,Attribute> factory)
Sets the function which will be used for creating newAttribute
instances when decoding attributes.DecodeOptions
DecodeOptions. setEntryFactory(Function<Dn,Entry> factory)
Sets the function which will be used for creating newEntry
instances when decoding entries.DecodeOptions
DecodeOptions. setSchema(Schema schema)
Sets theSchema
which will be used for decoding distinguished names, attribute descriptions, and other objects which require a schema in order to be decoded.DecodeOptions
DecodeOptions. setSchemaResolver(SchemaResolver resolver)
Sets the strategy for selecting whichSchema
should be used for decoding distinguished names, attribute descriptions, and other objects which require aSchema
in order to be decoded.Constructors in org.forgerock.opendj.ldap with parameters of type DecodeOptions Constructor Description DecodeOptions(DecodeOptions options)
Creates a new set of decode options having the same initial set of options as the provided set of decode options. -
Uses of DecodeOptions in org.forgerock.opendj.ldap.controls
Methods in org.forgerock.opendj.ldap.controls with parameters of type DecodeOptions Modifier and Type Method Description C
ControlDecoder. decodeControl(Control control, DecodeOptions options)
Decodes the provided control as aControl
of typeC
. -
Uses of DecodeOptions in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages with parameters of type DecodeOptions Modifier and Type Method Description R
ExtendedRequestDecoder. decodeExtendedRequest(ExtendedRequest<?> request, DecodeOptions options)
Decodes the provided extended operation request as anExtendedRequest
of typeR
.abstract S
AbstractExtendedResultDecoder. decodeExtendedResult(ExtendedResult result, DecodeOptions options)
S
ExtendedResultDecoder. decodeExtendedResult(ExtendedResult result, DecodeOptions options)
Decodes the provided extended operation result as aResult
of typeS
.<C extends Control>
CAbandonRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CAddRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CBindRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CBindResult. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CCancelExtendedRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CCompareRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CCompareResult. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CDeleteRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CExtendedRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CExtendedResult. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CGenericExtendedRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CGenericExtendedResult. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CGenericIntermediateResponse. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CIntermediateResponse. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CInvalidRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CModifyDnRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CModifyRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CPasswordModifyExtendedRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CPasswordModifyExtendedResult. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CProtocolOp. getControl(ControlDecoder<C> decoder, DecodeOptions options)
Decodes and returns the first control in this protocol-op having an OID corresponding to the provided control decoder.<C extends Control>
CResult. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CSearchRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CSearchResultReference. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CStartTlsExtendedRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CUnbindRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CWhoAmIExtendedRequest. getControl(ControlDecoder<C> decoder, DecodeOptions options)
<C extends Control>
CWhoAmIExtendedResult. getControl(ControlDecoder<C> decoder, DecodeOptions options)
-