KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > cache > config > Dynamic


1 package org.jboss.cache.config;
2
3 import java.lang.annotation.Documented JavaDoc;
4 import java.lang.annotation.ElementType JavaDoc;
5 import java.lang.annotation.Retention JavaDoc;
6 import java.lang.annotation.RetentionPolicy JavaDoc;
7 import java.lang.annotation.Target JavaDoc;
8
9 /**
10  * Annotation that marks fields in {@link Configuration} as being modifiable even after the cache has started.
11  *
12  * @author <a HREF="mailto:manik@jboss.org">Manik Surtani</a>
13  * @since 2.0.0
14  */

15
16 // ensure this annotation is available at runtime.
17
@Retention JavaDoc(RetentionPolicy.RUNTIME)
18
19 // ensure that this annotation is documented on fields in Configuration
20
@Documented JavaDoc
21
22 // only applies to fields.
23
@Target JavaDoc(ElementType.FIELD)
24
25 public @interface Dynamic
26 {
27 }
28
Popular Tags