001/*
002 * Licensed under the Apache License, Version 2.0 (the "License");
003 * you may not use this file except in compliance with the License.
004 * You may obtain a copy of the License at
005 *
006 *      http://www.apache.org/licenses/LICENSE-2.0
007 *
008 * Unless required by applicable law or agreed to in writing, software
009 * distributed under the License is distributed on an "AS IS" BASIS,
010 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
011 * See the License for the specific language governing permissions and
012 * limitations under the License.
013 */
014package org.apache.shiro.cdi.annotations;
015
016import javax.inject.Qualifier;
017import java.lang.annotation.Documented;
018import java.lang.annotation.Inherited;
019import java.lang.annotation.Retention;
020import java.lang.annotation.RetentionPolicy;
021import java.lang.annotation.Target;
022
023import static java.lang.annotation.ElementType.FIELD;
024import static java.lang.annotation.ElementType.METHOD;
025import static java.lang.annotation.ElementType.PARAMETER;
026
027@SuppressWarnings("checkstyle:JavadocType")
028/**
029 * Qualifier for @Injection of session that will not be created
030 * unless already exists
031 * <br>
032 * Example:
033 * <br>
034 * {@code
035 *
036 * @Inject
037 * @NoSessionCreation Session shiroSession;
038 * }
039 */
040@Qualifier
041@Retention(RetentionPolicy.RUNTIME)
042@Inherited
043@Documented
044@Target({METHOD, FIELD, PARAMETER})
045public @interface NoSessionCreation {
046}