Coverage Report - org.chenillekit.access.annotations.ChenilleKitAccess
 
Classes in this File Line Coverage Branch Coverage Complexity
ChenilleKitAccess
N/A
N/A
0
 
 1  
 /*
 2  
  * Apache License
 3  
  * Version 2.0, January 2004
 4  
  * http://www.apache.org/licenses/
 5  
  *
 6  
  * Copyright 2008 by chenillekit.org
 7  
  *
 8  
  * Licensed under the Apache License, Version 2.0 (the "License");
 9  
  * you may not use this file except in compliance with the License.
 10  
  * You may obtain a copy of the License at
 11  
  *
 12  
  * http://www.apache.org/licenses/LICENSE-2.0
 13  
  */
 14  
 
 15  
 /**
 16  
  *
 17  
  */
 18  
 
 19  
 package org.chenillekit.access.annotations;
 20  
 
 21  
 import java.lang.annotation.Documented;
 22  
 import java.lang.annotation.ElementType;
 23  
 import java.lang.annotation.Retention;
 24  
 import java.lang.annotation.RetentionPolicy;
 25  
 import java.lang.annotation.Target;
 26  
 
 27  
 /**
 28  
  * marker for chenillekit secure module access control dispatcher.
 29  
  *
 30  
  * @version $Id: ChenilleKitAccess.java 333 2008-11-19 16:26:03Z mlusetti $
 31  
  */
 32  
 @Target({ElementType.PARAMETER, ElementType.FIELD})
 33  
 @Retention(RetentionPolicy.RUNTIME)
 34  
 @Documented
 35  
 public @interface ChenilleKitAccess
 36  
 {
 37  
 }