|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
Attach.java | - | - | - | - |
|
1 | /* | |
2 | * JBoss, Home of Professional Open Source | |
3 | * | |
4 | * Distributable under LGPL license. | |
5 | * See terms of license at gnu.org. | |
6 | */ | |
7 | ||
8 | package org.jboss.cache.pojo.annotation; | |
9 | ||
10 | import java.lang.annotation.ElementType; | |
11 | import java.lang.annotation.Retention; | |
12 | import java.lang.annotation.RetentionPolicy; | |
13 | import java.lang.annotation.Target; | |
14 | ||
15 | /** | |
16 | * Annotation for PojoCache interceptor stack. This one checks for tx. | |
17 | * | |
18 | * @author Ben Wang | |
19 | * @version $Id: Attach.java,v 1.2 2007/05/23 10:28:53 msurtani Exp $ | |
20 | */ | |
21 | @Retention(RetentionPolicy.RUNTIME) | |
22 | @Target(ElementType.METHOD) | |
23 | public @interface Attach | |
24 | { | |
25 | } |
|