Package | Description |
---|---|
org.forgerock.opendj.io |
Classes and interfaces providing I/O functionality.
|
Modifier and Type | Class and Description |
---|---|
class |
LdapWriter<W extends Asn1Writer>
Writes LDAP messages to an underlying ASN.1 writer.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractAsn1Writer
An abstract
ASN1Writer which can be used as the basis for
implementing new ASN1 writer implementations. |
Modifier and Type | Method and Description |
---|---|
static <W extends Asn1Writer> |
Ldap.getWriter(W asn1Writer,
int ldapVersion)
Creates a new LDAP writer which will write LDAP messages to the provided
ASN.1 writer.
|
Modifier and Type | Method and Description |
---|---|
static Asn1Writer |
Asn1.getWriter(ByteStringBuilder builder)
Returns an ASN.1 writer whose destination is the provided byte string
builder.
|
static Asn1Writer |
Asn1.getWriter(ByteStringBuilder builder,
int maxBufferSize)
Returns an ASN.1 writer whose destination is the provided byte string
builder.
|
static Asn1Writer |
Asn1.getWriter(OutputStream stream)
Returns an ASN.1 writer whose destination is the provided output stream.
|
static Asn1Writer |
Asn1.getWriter(OutputStream stream,
int maxBufferSize)
Returns an ASN.1 writer whose destination is the provided output stream.
|
Asn1Writer |
Asn1Writer.writeBoolean(boolean value)
Writes a boolean element using the Universal Boolean ASN.1 type tag.
|
Asn1Writer |
AbstractAsn1Writer.writeBoolean(boolean value) |
Asn1Writer |
Asn1Writer.writeBoolean(byte type,
boolean value)
Writes a boolean element using the provided type tag.
|
Asn1Writer |
Asn1Writer.writeEndSequence()
Finishes writing a sequence element.
|
Asn1Writer |
Asn1Writer.writeEndSet()
Finishes writing a set element.
|
Asn1Writer |
Asn1Writer.writeEnumerated(byte type,
int value)
Writes an enumerated element using the provided type tag.
|
Asn1Writer |
Asn1Writer.writeEnumerated(int value)
Writes an enumerated element using the Universal Enumerated ASN.1 type
tag.
|
Asn1Writer |
AbstractAsn1Writer.writeEnumerated(int value) |
Asn1Writer |
Asn1Writer.writeInteger(byte type,
int value)
Writes an integer element using the provided type tag.
|
Asn1Writer |
Asn1Writer.writeInteger(byte type,
long value)
Writes an integer element using the provided type tag.
|
Asn1Writer |
Asn1Writer.writeInteger(int value)
Writes an integer element using the Universal Integer ASN.1 type tag.
|
Asn1Writer |
AbstractAsn1Writer.writeInteger(int value) |
Asn1Writer |
Asn1Writer.writeInteger(long value)
Writes an integer element using the Universal Integer ASN.1 type tag.
|
Asn1Writer |
AbstractAsn1Writer.writeInteger(long value) |
Asn1Writer |
Asn1Writer.writeNull()
Writes a null element using the Universal Null ASN.1 type tag.
|
Asn1Writer |
AbstractAsn1Writer.writeNull() |
Asn1Writer |
Asn1Writer.writeNull(byte type)
Writes a null element using the provided type tag.
|
Asn1Writer |
Asn1Writer.writeOctetString(byte[] value)
Writes an octet string element using the Universal Octet String ASN.1
type tag.
|
Asn1Writer |
AbstractAsn1Writer.writeOctetString(byte[] value) |
Asn1Writer |
Asn1Writer.writeOctetString(byte[] value,
int offset,
int length)
Writes an octet string element using the Universal Octet String ASN.1
type tag.
|
Asn1Writer |
AbstractAsn1Writer.writeOctetString(byte[] value,
int offset,
int length) |
Asn1Writer |
Asn1Writer.writeOctetString(byte type,
byte[] value)
Writes an octet string element using the provided type tag.
|
Asn1Writer |
AbstractAsn1Writer.writeOctetString(byte type,
byte[] value) |
Asn1Writer |
Asn1Writer.writeOctetString(byte type,
byte[] value,
int offset,
int length)
Writes an octet string element using the provided type tag.
|
Asn1Writer |
Asn1Writer.writeOctetString(byte type,
ByteSequence value)
Writes an octet string element using the provided type tag.
|
Asn1Writer |
Asn1Writer.writeOctetString(byte type,
CharSequence value)
Writes a string as a UTF-8 encoded octet string element using the
provided type tag.
|
Asn1Writer |
Asn1Writer.writeOctetString(ByteSequence value)
Writes an octet string element using the Universal Octet String ASN.1
type tag.
|
Asn1Writer |
AbstractAsn1Writer.writeOctetString(ByteSequence value) |
Asn1Writer |
Asn1Writer.writeOctetString(CharSequence value)
Writes a string as a UTF-8 encoded octet string element using the
Universal Octet String ASN.1 type tag.
|
Asn1Writer |
AbstractAsn1Writer.writeOctetString(CharSequence value) |
Asn1Writer |
Asn1Writer.writeStartSequence()
Writes a sequence element using the Universal Sequence ASN.1 type tag.
|
Asn1Writer |
AbstractAsn1Writer.writeStartSequence() |
Asn1Writer |
Asn1Writer.writeStartSequence(byte type)
Writes a sequence element using the provided type tag.
|
Asn1Writer |
Asn1Writer.writeStartSet()
Writes a set element using the Universal Set ASN.1 type tag.
|
Asn1Writer |
AbstractAsn1Writer.writeStartSet() |
Asn1Writer |
Asn1Writer.writeStartSet(byte type)
Writes a set element using the provided type tag.
|
Modifier and Type | Method and Description |
---|---|
static void |
Ldap.writeAttribute(Asn1Writer writer,
Attribute attribute)
Writes an
Attribute to the provided Asn1Writer . |
static void |
Ldap.writeEntry(Asn1Writer writer,
Entry entry)
Writes an
Entry to the provided Asn1Writer . |
static void |
Ldap.writeFilter(Asn1Writer writer,
Filter filter)
Writes a
Filter to the provided Asn1Writer . |
static void |
Ldap.writeModification(Asn1Writer writer,
Modification modification)
Writes an
Modification to the provided Asn1Writer . |
Copyright © 2010-2018, ForgeRock All Rights Reserved.