001 package com.khubla.pragmatach.plugin.cluster.annotation; 002 003 import java.lang.annotation.Documented; 004 import java.lang.annotation.ElementType; 005 import java.lang.annotation.Retention; 006 import java.lang.annotation.RetentionPolicy; 007 import java.lang.annotation.Target; 008 009 /** 010 * @author tome 011 */ 012 @Documented 013 @Target({ ElementType.TYPE }) 014 @Retention(RetentionPolicy.RUNTIME) 015 public @interface Clustered { 016 }