Class StreamProxyValuesBackendSetValue
java.lang.Object
com.unboundid.ldap.sdk.unboundidds.extensions.StreamProxyValuesBackendSetValue
- All Implemented Interfaces:
Serializable
@NotMutable
@ThreadSafety(level=COMPLETELY_THREADSAFE)
public final class StreamProxyValuesBackendSetValue
extends Object
implements Serializable
This class provides a data structure for holding a value included in the
stream proxy values intermediate response. It contains the value, and the ID
of the backend set with which the value is associated.
NOTE: This class, and other classes within the
com.unboundid.ldap.sdk.unboundidds package structure, are only
supported for use against Ping Identity, UnboundID, and
Nokia/Alcatel-Lucent 8661 server products. These classes provide support
for proprietary functionality or for external specifications that are not
considered stable or mature enough to be guaranteed to work in an
interoperable way with other types of LDAP servers.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStreamProxyValuesBackendSetValue(ASN1OctetString backendSetID, ASN1OctetString value) Creates a new stream proxy values backend set value object with the provided information. -
Method Summary
Modifier and TypeMethodDescriptiondecode(ASN1Element element) Decodes the provided ASN.1 element as a stream proxy values backend set value.encode()Encodes this backend set value in a form suitable for inclusion in a stream proxy values intermediate response.Retrieves the backend set ID for this backend set value.getValue()Retrieves the value for this backend set value.toString()Retrieves a string representation of this backend set value.voidtoString(StringBuilder buffer) Appends a string representation of this backend set value to the provided buffer.
-
Constructor Details
-
StreamProxyValuesBackendSetValue
public StreamProxyValuesBackendSetValue(@NotNull ASN1OctetString backendSetID, @NotNull ASN1OctetString value) Creates a new stream proxy values backend set value object with the provided information.- Parameters:
backendSetID- The backend set ID for this backend set value. It must not benull.value- The value for this backend set value. It must not benull.
-
-
Method Details
-
getBackendSetID
Retrieves the backend set ID for this backend set value.- Returns:
- The backend set ID for this backend set value.
-
getValue
Retrieves the value for this backend set value.- Returns:
- The value for this backend set value.
-
encode
Encodes this backend set value in a form suitable for inclusion in a stream proxy values intermediate response.- Returns:
- An ASN.1 element containing the encoded representation of this stream proxy values backend set value.
-
decode
@NotNull public static StreamProxyValuesBackendSetValue decode(@NotNull ASN1Element element) throws LDAPException Decodes the provided ASN.1 element as a stream proxy values backend set value.- Parameters:
element- The ASN.1 element to be decoded as a stream proxy values backend set value.- Returns:
- The decoded stream proxy values backend set value.
- Throws:
LDAPException- If a problem occurs while attempting to decode the provided ASN.1 element as a stream proxy values backend set value.
-
toString
Retrieves a string representation of this backend set value. -
toString
Appends a string representation of this backend set value to the provided buffer.- Parameters:
buffer- The buffer to which the string representation should be appended.
-