API java : BinaryRefAddr


javax.naming
Class BinaryRefAddr

java.lang.Object
  extended by javax.naming.RefAddr
      extended by javax.naming.BinaryRefAddr
All Implemented Interfaces:
Serializable

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 inherited from class javax.naming.RefAddr
addrType
 
Constructor Summary
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
 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 inherited from class javax.naming.RefAddr
getType
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BinaryRefAddr

public BinaryRefAddr(String 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 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 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 in class RefAddr
Returns:
The non-null buffer containing this address's contents.

equals

public boolean equals(Object 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 in class RefAddr
Parameters:
obj - The possibly null object to check.
Returns:
true if the object is equal; false otherwise.
See Also:
RefAddr.getContent(), RefAddr.getType()

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 in class RefAddr
Returns:
The hash code of this address as an int.
See Also:
Object.hashCode()

toString

public String 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 in class RefAddr
Returns:
The non-null string representation of this address.

Ces informations proviennent du site de http://java.sun.com

Remarques

Contenu

Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :

Quels sont les motivations de cette démarche?

Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.

Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.

Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.

Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.

Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.

Réseaux sociaux

Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.

 

Nuage de mots clés

6 mots clés dont 0 définis manuellement (plus d'information...).

Avertissement

Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.

Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.

 

Astuce pour imprimer les couleurs des cellules de tableaux : http://www.gaudry.be/ast-rf-450.html
Aucun commentaire pour cette page

© Ce document issu de l′infobrol est enregistré sous le certificat Cyber PrInterDeposit Digital Numbertection. Enregistrement IDDN n° 5329-1650
Document créé le 29/08/06 22:49, dernière modification le Vendredi 17 Juin 2011, 12:12
Source du document imprimé : http://www.gaudry.be/java-api-rf-javax/naming/BinaryRefAddr.html Document affiché 1 fois ce mois de Juin.
St.Gaudry©07.01.02
Outils (masquer)
||
Recherche (afficher)
Recherche :

Utilisateur (masquer)
Navigation (masquer)
Apparence (afficher)
Stats (afficher)
15832 documents
452 astuces.
549 niouzes.
3099 definitions.
447 membres.
8115 messages.

Document genere en :
0,49 seconde

Mises à jour :
Mises à jour du site
Citation (masquer)
Plus la part de gâteau est belle, plus elle a de chance de tomber de travers dans l'assiette au moment de la servir.

Loi de Murphy
 
l'infobrol
Nous sommes le Samedi 02 Juin 2012, 01:42, toutes les heures sont au format GMT+1.00 Heure, heure d'été (+1)