Coverage Report - pt.digitalis.dif.dem.annotations.AnnotationMemberTags
 
Classes in this File Line Coverage Branch Coverage Complexity
AnnotationMemberTags
0%
0/2
N/A
0
 
 1  0
 /**
 2  
  * 2007, Digitalis Informatica. All rights reserved. Distribuicao e Gestao de Informatica, Lda. Estrada de Paco de Arcos
 3  
  * num.9 - Piso -1 2780-666 Paco de Arcos Telefone: (351) 21 4408990 Fax: (351) 21 4408999 http://www.digitalis.pt
 4  
  */
 5  
 
 6  
 package pt.digitalis.dif.dem.annotations;
 7  
 
 8  
 /**
 9  
  * This class defines the annotation member names as String constant.
 10  
  * 
 11  
  * @author Rodrigo Gonçalves <a href="mailto:rgoncalves@digitalis.pt">rgoncalves@digitalis.pt</a><br/>
 12  
  * @created 2007/11/21
 13  
  */
 14  0
 final public class AnnotationMemberTags {
 15  
 
 16  
     /** Java's annotation 'value' member tag. */
 17  
     final static public String ANNOTATION_VALUE = "value";
 18  
 
 19  
     /** ApplicationDefinition 'provider' member tag. */
 20  
     final static public String APPLICATION_DEFINITION_PROVIDER = "provider";
 21  
 
 22  
     /** DispatcherMode 'authenticate' member tag. */
 23  
     final static public String DISPATCHER_MODE_AUTHENTICATE = "authenticate";
 24  
 
 25  
     /** DispatcherMode 'authorize' member tag. */
 26  
     final static public String DISPATCHER_MODE_AUTHORIZE = "authorize";
 27  
 
 28  
     /** Entity 'id' member tag. */
 29  
     final static public String ENTITY_DEFINITION_ID = "id";
 30  
 
 31  
     /** Entity 'name' member tag. */
 32  
     final static public String ENTITY_DEFINITION_NAME = "name";
 33  
 
 34  
     /** ErrorStage 'exceptions' member tag. */
 35  
     final static public String ERROR_STAGE_EXCEPTIONS = "exceptions";
 36  
 
 37  
     /** ErrorStage 'target' member tag. */
 38  
     final static public String ERROR_STAGE_TARGET = "target";
 39  
 
 40  
     /** ErrorView 'exceptions' member tag. */
 41  
     final static public String ERROR_VIEW_EXCEPTIONS = "exceptions";
 42  
 
 43  
     /** Parameter 'constraint' member tag. */
 44  
     final static public String PARAMETER_CONSTRAINTS = "constraints";
 45  
 
 46  
     /** Parameter 'defaultValue' member tag. */
 47  
     final static public String PARAMETER_DEFAULT_VALUE = "defaultValue";
 48  
 
 49  
     /** Parameter 'id' member tag. */
 50  
     final static public String PARAMETER_ID = "id";
 51  
 
 52  
     /** Parameter 'linkToForm' member tag. */
 53  
     final static public String PARAMETER_LINK_TO_FORM = "linkToForm";
 54  
 
 55  
     /** Parameter 'regexp' member tag. */
 56  
     final static public String PARAMETER_REGEXP_VALUE = "regexp";
 57  
 
 58  
     /** Persist 'repository' member tag. */
 59  
     final static public String PERSIST_ALLOW_ANONYMOUS = "allowAnonymous";
 60  
 
 61  
     /** Persist 'groupVisibility' member tag. */
 62  
     final static public String PERSIST_GROUP_VISIBILITY = "groupVisibility";
 63  
 
 64  
     /** Persist 'repository' member tag. */
 65  
     final static public String PERSIST_REPOSITORY = "repository";
 66  
 
 67  
     /** Persist 'scope' member tag. */
 68  
     final static public String PERSIST_SCOPE = "scope";
 69  
 
 70  
     /** ProviderDefinition 'defaultProvider' member tag. */
 71  
     final static public String PROVIDER_DEFINITION_DEFAULT_PROVIDER = "defaultProvider";
 72  
 
 73  
     /** Rule 'action' member tag. */
 74  
     final static public String RULE_ACTION = "action";
 75  
 
 76  
     /** Rule 'first' member tag. */
 77  
     final static public String RULE_FIRST = "first";
 78  
 
 79  
     /** Rule 'ruleID' member tag. */
 80  
     final static public String RULE_ID = "ruleId";
 81  
 
 82  
     /** Rule 'last' member tag. */
 83  
     final static public String RULE_LAST = "last";
 84  
 
 85  
     /** Rule 'parameters' member tag. */
 86  
     final static public String RULE_PARAMETER_LIST = "parameters";
 87  
 
 88  
     /** Rule 'value' member tag. */
 89  
     final static public String RULE_VALUE = "value";
 90  
 
 91  
     /** ServiceDefinition 'application' member tag. */
 92  
     final static public String SERVICE_DEFINITION_APPLICATION = "application";
 93  
 
 94  
     /** StageDefinition 'service' member tag. */
 95  
     final static public String STAGE_DEFINITION_SERVICE = "service";
 96  
 
 97  
     /** Stage definition 'overrideDefault' member tag. */
 98  
     final static public String STAGE_OVERRIDE_DEFAULT = "overrideDefault";
 99  
 
 100  
     /** Rule 'parameters' member tag. */
 101  
     final static public String VALUE = "value";
 102  
 
 103  
     /** View 'engine' member tag. */
 104  
     final static public String VIEW_ENGINE = "engine";
 105  
 
 106  
     /** ErrorView 'isDefault' member tag. */
 107  
     final static public String VIEW_IS_DEFAULT = "defaultView";
 108  
 
 109  
     /** View 'target' member tag. */
 110  
     final static public String VIEW_TARGET = "target";
 111  
 
 112  
 }