Keine Cache-Version

Caching deaktiviert Standardeinstellung für diese Seite:aktiviert (code LNG204)
Wenn die Anzeige zu langsam ist, können Sie den Benutzermodus deaktivieren, um die zwischengespeicherte Version anzuzeigen.
javax.management

Annotation Type DescriptorKey


  • @Documented
    @Retention(value=RUNTIME)
    @Target(value=METHOD)
    public @interface DescriptorKey

    Meta-annotation that describes how an annotation element relates to a field in a Descriptor. This can be the Descriptor for an MBean, or for an attribute, operation, or constructor in an MBean, or for a parameter of an operation or constructor.

    Consider this annotation for example:

     @Documented
     @Target(ElementType.METHOD)
     @Retention(RetentionPolicy.RUNTIME)
     public @interface Units {
         @DescriptorKey("units")
         String value();
     }
     

    and this use of the annotation:

     public interface CacheControlMBean {
         @Units("bytes")
         public long getCacheSize();
     }
     

    When a Standard MBean is made from the CacheControlMBean, the usual rules mean that it will have an attribute called CacheSize of type long. The @Units annotation, given the above definition, will ensure that the MBeanAttributeInfo for this attribute will have a Descriptor that has a field called units with corresponding value bytes.

    Similarly, if the annotation looks like this:

     @Documented
     @Target(ElementType.METHOD)
     @Retention(RetentionPolicy.RUNTIME)
     public @interface Units {
         @DescriptorKey("units")
         String value();
    
         @DescriptorKey("descriptionResourceKey")
         String resourceKey() default "";
    
         @DescriptorKey("descriptionResourceBundleBaseName")
         String resourceBundleBaseName() default "";
     }
     

    and it is used like this:

     public interface CacheControlMBean {
         @Units("bytes",
                resourceKey="bytes.key",
                resourceBundleBaseName="com.example.foo.MBeanResources")
         public long getCacheSize();
     }
     

    then the resulting Descriptor will contain the following fields:

    NameValue
    units"bytes"
    descriptionResourceKey"bytes.key"
    descriptionResourceBundleBaseName "com.example.foo.MBeanResources"

    Erste Seite von API Java Inhaltsverzeichnis Haut

    An annotation such as @Units can be applied to:

    • a Standard MBean or MXBean interface;
    • a method in such an interface;
    • a parameter of a method in a Standard MBean or MXBean interface when that method is an operation (not a getter or setter for an attribute);
    • a public constructor in the class that implements a Standard MBean or MXBean;
    • a parameter in such a constructor.

    Other uses of the annotation are ignored.

    Interface annotations are checked only on the exact interface that defines the management interface of a Standard MBean or an MXBean, not on its parent interfaces. Method annotations are checked only in the most specific interface in which the method appears; in other words, if a child interface overrides a method from a parent interface, only @DescriptorKey annotations in the method in the child interface are considered.

    The Descriptor fields contributed in this way by different annotations on the same program element must be consistent. That is, two different annotations, or two members of the same annotation, must not define a different value for the same Descriptor field. Fields from annotations on a getter method must also be consistent with fields from annotations on the corresponding setter method.

    The Descriptor resulting from these annotations will be merged with any Descriptor fields provided by the implementation, such as the immutableInfo field for an MBean. The fields from the annotations must be consistent with these fields provided by the implementation.

    An annotation element to be converted into a descriptor field can be of any type allowed by the Java language, except an annotation or an array of annotations. The value of the field is derived from the value of the annotation element as follows:

    Annotation elementDescriptor field
    Primitive value (5, false, etc) Wrapped value (Integer.valueOf(5), Boolean.FALSE, etc)
    Class constant (e.g. Thread.class) Class name from Class.getName() (e.g. "java.lang.Thread")
    Enum constant (e.g. ElementType.FIELD) Constant name from Enum.name() (e.g. "FIELD")
    Array of class constants or enum constants String array derived by applying these rules to each element
    Value of any other type
    (String, String[], int[], etc)
    The same value

    Erste Seite von API Java Inhaltsverzeichnis Haut

    Since:
    1.6
    • Element Detail

      • value

        public abstract String value

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/management/DescriptorKey.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.

Inhaltsverzeichnis Haut