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

org.infinispan.factories.annotations.ComponentName Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.factories.annotations;

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

/**
 * Mechanism for specifying the name of components to retrieve
 *
 * @author Manik Surtani
 * @since 4.0
 */
@Target({ ElementType.PARAMETER, ElementType.FIELD })
@Retention(RetentionPolicy.CLASS)
public @interface ComponentName {
   String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy