BinaryRefAddr (Java SE 11 & JDK 11 ) (original) (raw)
- javax.naming.RefAddr
- javax.naming.BinaryRefAddr
All Implemented Interfaces:
[Serializable](../../../java.base/java/io/Serializable.html "interface in java.io")
public class BinaryRefAddr
extends RefAddr
This class represents the binary form of the address of a communications end-point.
A BinaryRefAddr consists of a type that describes the communication mechanism and an opaque buffer containing the address description specific to that communication mechanism. The format and interpretation of the address type and the contents of the opaque buffer are based on the agreement of three parties: the client that uses the address, the object/server that can be reached using the address, and the administrator or program that creates the address.
An example of a binary reference address is an BER X.500 presentation address. Another example of a binary reference address is a serialized form of a service's object handle.
A binary reference address is immutable in the sense that its fields once created, cannot be replaced. However, it is possible to access the byte array used to hold the opaque buffer. Programs are strongly recommended against changing this byte array. Changes to this byte array need to be explicitly synchronized.
Since:
1.3
See Also:
RefAddr, StringRefAddr, Serialized Form
Field Summary
* ### Fields declared in class javax.naming.[RefAddr](RefAddr.html "class in javax.naming") `[addrType](RefAddr.html#addrType)`
Constructor Summary
Constructors
Constructor Description BinaryRefAddr(String addrType, byte[] src) Constructs a new instance of BinaryRefAddr using its address type and a byte array for contents. BinaryRefAddr(String addrType, byte[] src, int offset, int count) Constructs a new instance of BinaryRefAddr using its address type and a region of a byte array for contents. Method Summary
All Methods Instance Methods Concrete Methods
Modifier and Type Method Description boolean equals(Object obj) Determines whether obj is equal to this address. Object getContent() Retrieves the contents of this address as an Object. int hashCode() Computes the hash code of this address using its address type and contents. String toString() Generates the string representation of this address. * ### Methods declared in class javax.naming.[RefAddr](RefAddr.html "class in javax.naming") `[getType](RefAddr.html#getType%28%29)` * ### Methods declared in class java.lang.[Object](../../../java.base/java/lang/Object.html "class in java.lang") `[clone](../../../java.base/java/lang/Object.html#clone%28%29), [finalize](../../../java.base/java/lang/Object.html#finalize%28%29), [getClass](../../../java.base/java/lang/Object.html#getClass%28%29), [notify](../../../java.base/java/lang/Object.html#notify%28%29), [notifyAll](../../../java.base/java/lang/Object.html#notifyAll%28%29), [wait](../../../java.base/java/lang/Object.html#wait%28%29), [wait](../../../java.base/java/lang/Object.html#wait%28long%29), [wait](../../../java.base/java/lang/Object.html#wait%28long,int%29)`
Constructor Detail
* #### BinaryRefAddr public BinaryRefAddr([String](../../../java.base/java/lang/String.html "class in java.lang") addrType, byte[] src) Constructs a new instance of BinaryRefAddr using its address type and a byte array for contents. Parameters: `addrType` \- A non-null string describing the type of the address. `src` \- The non-null contents of the address as a byte array. The contents of src is copied into the new BinaryRefAddr. * #### BinaryRefAddr public BinaryRefAddr([String](../../../java.base/java/lang/String.html "class in java.lang") addrType, byte[] src, int offset, int count) Constructs a new instance of BinaryRefAddr using its address type and a region of a byte array for contents. Parameters: `addrType` \- A non-null string describing the type of the address. `src` \- The non-null contents of the address as a byte array. The contents of src is copied into the new BinaryRefAddr. `offset` \- The starting index in src to get the bytes.`0 <= offset <= src.length`. `count` \- The number of bytes to extract from src.`0 <= count <= src.length-offset`.
Method Detail
* #### getContent public [Object](../../../java.base/java/lang/Object.html "class in java.lang") getContent() Retrieves the contents of this address as an Object. The result is a byte array. Changes to this array will affect this BinaryRefAddr's contents. Programs are recommended against changing this array's contents and to lock the buffer if they need to change it. Specified by: `[getContent](RefAddr.html#getContent%28%29)` in class `[RefAddr](RefAddr.html "class in javax.naming")` Returns: The non-null buffer containing this address's contents. * #### equals public boolean equals([Object](../../../java.base/java/lang/Object.html "class in java.lang") obj) Determines whether obj is equal to this address. It is equal if it contains the same address type and their contents are byte-wise equivalent. Overrides: `[equals](RefAddr.html#equals%28java.lang.Object%29)` in class `[RefAddr](RefAddr.html "class in javax.naming")` Parameters: `obj` \- The possibly null object to check. Returns: true if the object is equal; false otherwise. See Also: [RefAddr.getContent()](RefAddr.html#getContent%28%29), [RefAddr.getType()](RefAddr.html#getType%28%29) * #### hashCode public int hashCode() Computes the hash code of this address using its address type and contents. Two BinaryRefAddrs have the same hash code if they have the same address type and the same contents. It is also possible for different BinaryRefAddrs to have the same hash code. Overrides: `[hashCode](RefAddr.html#hashCode%28%29)` in class `[RefAddr](RefAddr.html "class in javax.naming")` Returns: The hash code of this address as an int. See Also: [Object.hashCode()](../../../java.base/java/lang/Object.html#hashCode%28%29) * #### toString public [String](../../../java.base/java/lang/String.html "class in java.lang") toString() Generates the string representation of this address. The string consists of the address's type and contents with labels. The first 32 bytes of contents are displayed (in hexadecimal). If there are more than 32 bytes, "..." is used to indicate more. This string is meant to used for debugging purposes and not meant to be interpreted programmatically. Overrides: `[toString](RefAddr.html#toString%28%29)` in class `[RefAddr](RefAddr.html "class in javax.naming")` Returns: The non-null string representation of this address.
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2025, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.