support/cdi/src/main/java/org/apache/shiro/cdi/annotations/NoSessionCreation.java [27:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@SuppressWarnings("checkstyle:JavadocType")
/**
 * Qualifier for @Injection of session that will not be created
 * unless already exists
 * <br>
 * Example:
 * <br>
 * {@code
 *
 * @Inject
 * @NoSessionCreation Session shiroSession;
 * }
 */
@Qualifier
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
@Target({METHOD, FIELD, PARAMETER})
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



support/cdi/src/main/java/org/apache/shiro/cdi/annotations/Principal.java [27:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@SuppressWarnings("checkstyle:JavadocType")
/**
 * Qualifier for @Injection of Principal object
 * <br>
 * Example:
 * <br>
 * {@code
 *
 * @Inject
 * @Principal Supplier<UserAccount> account;
 * }
 */
@Qualifier
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
@Target({METHOD, FIELD, PARAMETER})
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



