/*
* JBoss, Home of Professional Open Source
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.cache.pojo.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annoataion that wraps the Prepare annotation of JBossAop.
*
* @author Ben Wang
* Date: Jan 22, 2006
* @version $Id: Replicable.java,v 1.1 2007/01/13 15:55:05 bwang Exp $
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Replicable
{
}
|