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

org.infinispan.commons.configuration.BuiltBy Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.commons.configuration;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * BuiltBy. An annotation for configuration beans to specify what builder builds them.
 * This annotation is required on all non-core configuration classes (i.e. ones which reside
 * in external modules)
 *
 * @author Tristan Tarrant
 * @since 5.2
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface BuiltBy {
   @SuppressWarnings("rawtypes")
   Class value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy