Uses of Class
org.forgerock.opendj.io.Asn1Reader
-
Packages that use Asn1Reader Package Description org.forgerock.opendj.io Classes and interfaces providing I/O functionality.org.opends.server.replication.protocol This package contains the code used by the replication server and by the code running on the Directory Server side to exchange their information. -
-
Uses of Asn1Reader in org.forgerock.opendj.io
Methods in org.forgerock.opendj.io that return Asn1Reader Modifier and Type Method Description static Asn1ReaderAsn1. getReader(byte[] array)Returns an ASN.1 reader whose source is the provided byte array and having an unlimited maximum BER element size.static Asn1ReaderAsn1. getReader(byte[] array, int maxElementSize)Returns an ASN.1 reader whose source is the provided byte array and having a user defined maximum BER element size.static Asn1ReaderAsn1. getReader(InputStream stream)Returns an ASN.1 reader whose source is the provided input stream and having an unlimited maximum BER element size.static Asn1ReaderAsn1. getReader(InputStream stream, int maxElementSize)Returns an ASN.1 reader whose source is the provided input stream and having a user defined maximum BER element size.static Asn1ReaderAsn1. getReader(ByteSequence sequence)Returns an ASN.1 reader whose source is the provided byte sequence and having an unlimited maximum BER element size.static Asn1ReaderAsn1. getReader(ByteSequence sequence, int maxElementSize)Returns an ASN.1 reader whose source is the provided byte sequence and having a user defined maximum BER element size.static Asn1ReaderAsn1. getReader(ByteSequenceReader reader)Returns an ASN.1 reader whose source is the provided byte sequence reader and having an unlimited maximum BER element size.static Asn1ReaderAsn1. getReader(ByteSequenceReader reader, int maxElementSize)Returns an ASN.1 reader whose source is the provided byte sequence reader and having a user defined maximum BER element size.Asn1ReaderAsn1Reader. skipElement()Skips the next element without decoding it.Asn1ReaderAsn1Reader. skipElement(byte type)Skips the next element having the provided type tag without decoding it.Methods in org.forgerock.opendj.io with parameters of type Asn1Reader Modifier and Type Method Description static LdapReaderLdap. 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 AttributeLdap. readAttribute(Asn1Reader reader, DecodeOptions options, Schema schema)Reads the next ASN.1 element from the providedASN1Readeras anAttribute.static ControlLdap. readControl(Asn1Reader reader)Reads the next ASN.1 element from the providedASN1Readeras aControl.static EntryLdap. readEntry(Asn1Reader reader, DecodeOptions options)Reads the next ASN.1 element from the providedASN1Readeras anEntry.static FilterLdap. readFilter(Asn1Reader reader)Reads the next ASN.1 element from the providedASN1Readeras aFilterusing a maximum filter depth of 100.static FilterLdap. readFilter(Asn1Reader reader, int maxFilterDepth)Reads the next ASN.1 element from the providedASN1Readeras aFilterusing the provided maximum filter depth.static ModificationLdap. readModification(Asn1Reader reader, DecodeOptions options, Schema schema)Reads the next ASN.1 element from the providedASN1Readeras aModification. -
Uses of Asn1Reader in org.opends.server.replication.protocol
Methods in org.opends.server.replication.protocol that return Asn1Reader Modifier and Type Method Description Asn1ReaderByteArrayScanner. getAsn1Reader()Returns a new ASN1Reader that will read bytes from this ByteArrayScanner.Constructors in org.opends.server.replication.protocol with parameters of type Asn1Reader Constructor Description ExtendedStartMsg(Asn1Reader asn1, byte messageType)Constructs a ExtendedStartMsg from a replication message.
-