Coverage Report - org.kuali.rice.kns.service.ParameterConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
ParameterConstants
0%
0/2
N/A
0
ParameterConstants$COMPONENT
N/A
N/A
0
ParameterConstants$NAMESPACE
N/A
N/A
0
ParameterConstants$NERVOUS_SYSTEM_ALL
0%
0/1
N/A
0
ParameterConstants$NERVOUS_SYSTEM_BATCH
0%
0/1
N/A
0
ParameterConstants$NERVOUS_SYSTEM_DOCUMENT
0%
0/1
N/A
0
ParameterConstants$NERVOUS_SYSTEM_LOOKUP
0%
0/1
N/A
0
 
 1  
 /*
 2  
  * Copyright 2007-2009 The Kuali Foundation
 3  
  * 
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  * 
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  * 
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.kns.service;
 17  
 
 18  
 import java.lang.annotation.ElementType;
 19  
 import java.lang.annotation.Retention;
 20  
 import java.lang.annotation.RetentionPolicy;
 21  
 import java.lang.annotation.Target;
 22  
 
 23  
 import org.kuali.rice.kns.util.KNSConstants;
 24  
 
 25  
 
 26  0
 public class ParameterConstants {
 27  
     public static final String NERVOUS_SYSTEM_NAMESPACE = KNSConstants.KNS_NAMESPACE;
 28  
     public static final String ALL_COMPONENT = "All";
 29  
     public static final String DOCUMENT_COMPONENT = "Document";
 30  
     public static final String LOOKUP_COMPONENT = "Lookup";
 31  
     public static final String BATCH_COMPONENT = "Batch";
 32  
 
 33  
     @Retention(RetentionPolicy.RUNTIME)
 34  
     @Target( { ElementType.TYPE })
 35  
     public @interface NAMESPACE {
 36  
         String namespace();
 37  
     }
 38  
 
 39  
     @Retention(RetentionPolicy.RUNTIME)
 40  
     @Target( { ElementType.TYPE })
 41  
     public @interface COMPONENT {
 42  
         String component();
 43  
     }
 44  
 
 45  
     @NAMESPACE(namespace = NERVOUS_SYSTEM_NAMESPACE)
 46  
     @COMPONENT(component = ALL_COMPONENT)
 47  0
     public final class NERVOUS_SYSTEM_ALL {
 48  
     }
 49  
 
 50  
     @NAMESPACE(namespace = NERVOUS_SYSTEM_NAMESPACE)
 51  
     @COMPONENT(component = DOCUMENT_COMPONENT)
 52  0
     public final class NERVOUS_SYSTEM_DOCUMENT {
 53  
     }
 54  
 
 55  
     @NAMESPACE(namespace = NERVOUS_SYSTEM_NAMESPACE)
 56  
     @COMPONENT(component = LOOKUP_COMPONENT)
 57  0
     public final class NERVOUS_SYSTEM_LOOKUP {
 58  
     }
 59  
 
 60  0
     @NAMESPACE(namespace = NERVOUS_SYSTEM_NAMESPACE)
 61  
     @COMPONENT(component = BATCH_COMPONENT)
 62  0
     public final class NERVOUS_SYSTEM_BATCH {
 63  
     }
 64  
 
 65  
 }