org.infinispan.external.JGroupsProtocolComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-component-annotations Show documentation
Show all versions of infinispan-component-annotations Show documentation
Annotations for Infinispan components and MBeans
package org.infinispan.external;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @since 14.0
**/
@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.SOURCE)
public @interface JGroupsProtocolComponent {
String value();
}