1 /* Copyright 2009, Sebastian Prehn
2 *
3 * This file is part of JCR Blog
4 *
5 * JCR Blog is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * JCR Blog is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with JCR Blog. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * Versioning:
19 * $LastChangedDate: 2010-05-04 22:38:00 +0200 (Di, 04 Mai 2010) $
20 * $LastChangedRevision: 140 $
21 */
22
23 package org.jcr_blog.persistence;
24
25 import java.lang.annotation.ElementType;
26 import java.lang.annotation.Retention;
27 import java.lang.annotation.RetentionPolicy;
28 import java.lang.annotation.Target;
29 import javax.inject.Qualifier;
30
31 /**
32 *
33 * @author Sebastian Prehn <sebastian.prehn@planetswebdesign.de>
34 */
35
36 @Qualifier
37 @Retention(RetentionPolicy.RUNTIME)
38 @Target({ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD, ElementType.TYPE})
39 public @interface JcrSession {
40
41 }