All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jgroups.annotations.Property Maven / Gradle / Ivy

Go to download

This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up with different versions on classes on the class path).

There is a newer version: 33.0.2.Final
Show newest version
package org.jgroups.annotations;

import java.lang.annotation.*;

import org.jgroups.conf.PropertyConverter;
import org.jgroups.conf.PropertyConverters;

/**
 * Represents a Protocol property assigned from corresponding field in JGroups
 * properties file.
 * 
 * 

* Since all protocol properties are read as String instances from properties * file properties need to be converted to an appropriate field type of a * matching Protocol instance. JGroups supplies set of converters in * {@link PropertyConverters} class. * *

* Third parties can provide their own converters if such need arises by * implementing {@link PropertyConverter} interface and by specifying that * converter as converter on a specific Property annotation of a field or a * method instance. * *

* Property annotation can decorate either a field or a method of a Property * class. If a method is decorated with Property annotation it is assumed that * such a method is a setter with only one parameter type that a specified * converter can convert from a String to an actual type. * * * @author Vladimir Blagojevic */ @Retention(RetentionPolicy.RUNTIME) @Target( { ElementType.METHOD, ElementType.FIELD }) public @interface Property { String name() default ""; String description() default ""; String deprecatedMessage() default ""; Class converter() default PropertyConverters.Default.class; String dependsUpon() default ""; String[] systemProperty() default {}; /** * Global.NON_LOOPBACK_ADDRESS means pick any valid non-loopback IPv4 address */ String defaultValueIPv4() default "" ; /** * Global.NON_LOOPBACK_ADDRESS means pick any valid non-loopback IPv6 address */ String defaultValueIPv6() default "" ; /** Expose this property also as a managed attribute */ boolean exposeAsManagedAttribute() default true; /* Should this managed attribute be writeable ? If set to true, automatically sets exposeAsManagedAttribute to true */ boolean writable() default true; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy