-
public interface CompositeDataView
A Java class can implement this interface to indicate how it is to be converted into a
CompositeData
by the MXBean framework.A typical way to use this class is to add extra items to the
CompositeData
in addition to the ones that are declared in theCompositeType
supplied by the MXBean framework. To do this, you must create anotherCompositeType
that has all the same items, plus your extra items.For example, suppose you have a class
Measure
that consists of a String calledunits
and avalue
that is either along
or adouble
. It might look like this:public class Measure implements CompositeDataView { private String units; private Number value; // a Long or a Double public Measure(String units, Number value) { this.units = units; this.value = value; } public static Measure from(CompositeData cd) { return new Measure((String) cd.get("units"), (Number) cd.get("value")); } public String getUnits() { return units; } // Can't be called getValue(), because Number is not a valid type // in an MXBean, so the implied "value" property would be rejected. public Number _getValue() { return value; } public CompositeData toCompositeData(CompositeType ct) { try {
List<String> itemNames = new ArrayList<String>(ct.keySet());
List<String> itemDescriptions = new ArrayList<String>();
List<OpenType<?>> itemTypes = new ArrayList<OpenType<?>>();
for (String item : itemNames) { itemDescriptions.add(ct.getDescription(item)); itemTypes.add(ct.getType(item)); } itemNames.add("value"); itemDescriptions.add("long or double value of the measure"); itemTypes.add((value instanceof Long) ? SimpleType.LONG : SimpleType.DOUBLE); CompositeType xct = new CompositeType(ct.getTypeName(), ct.getDescription(), itemNames.toArray(new String[0]), itemDescriptions.toArray(new String[0]), itemTypes.toArray(new OpenType<?>[0])); CompositeData cd = new CompositeDataSupport(xct, new String[] {"units", "value"}, new Object[] {units, value}); assert ct.isValue(cd); // check we've done it right return cd; } catch (Exception e) { throw new RuntimeException(e); } } }The
CompositeType
that will appear in theopenType
field of theDescriptor
for an attribute or operation of this type will show only theunits
item, but the actualCompositeData
that is generated will have bothunits
andvalue
.- Since:
- 1.6
- See Also:
MXBean
-
-
Method Summary
Methods Modifier and Type Method and Description CompositeData
toCompositeData(CompositeType ct)
Return aCompositeData
corresponding to the values in this object.
-
-
-
Method Detail
-
toCompositeData
CompositeData toCompositeData(CompositeType ct)
Return a
CompositeData
corresponding to the values in this object. The returned value should usually be an instance ofCompositeDataSupport
, or a class that serializes as aCompositeDataSupport
via awriteReplace
method. Otherwise, a remote client that receives the object might not be able to reconstruct it.- Parameters:
ct
- The expectedCompositeType
of the returned value. If the returned value iscd
, thencd.getCompositeType().equals(ct)
should be true. Typically this will be becausecd
is aCompositeDataSupport
constructed withct
as itsCompositeType
.- Returns:
- the
CompositeData
.
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
22/11/2024 22:02:55 Cette version de la page est en cache (à la date du 22/11/2024 22:02:55) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 11/06/2005, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/management/openmbean/compositedataview.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.