Coverage Report - net.admin4j.util.annotate.Product
 
Classes in this File Line Coverage Branch Coverage Complexity
Product
100%
9/9
N/A
0
 
 1  
 /*
 2  
  * This software is licensed under the Apache License, Version 2.0
 3  
  * (the "License") agreement; you may not use this file except in compliance with
 4  
  * the License.  You may obtain a copy of the License at
 5  
  *
 6  
  *      http://www.apache.org/licenses/LICENSE-2.0
 7  
  *
 8  
  * Unless required by applicable law or agreed to in writing, software
 9  
  * distributed under the License is distributed on an "AS IS" BASIS,
 10  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 11  
  * See the License for the specific language governing permissions and
 12  
  * limitations under the License.
 13  
  */
 14  
 package net.admin4j.util.annotate;
 15  
 
 16  
 /**
 17  
  * Provides a list of supported products. Used in combination with the
 18  
  * ProductDependencies annotation.
 19  
  * 
 20  
  * @author D. Ashmore
 21  
  * @see ProductDependencies
 22  
  * @since 1.0
 23  
  */
 24  27
 public enum Product {
 25  
         /**
 26  
          * Log4J Related
 27  
          */
 28  3
         LOG4J,
 29  
 
 30  
         /**
 31  
          * Logback Related
 32  
          */
 33  3
         LOGBACK,
 34  
 
 35  
         /**
 36  
          * JDBC20 Related
 37  
          */
 38  3
         JDBC20,
 39  
 
 40  
         /**
 41  
          * JDBC30 Releted
 42  
          */
 43  3
         JDBC30,
 44  
 
 45  
         /**
 46  
          * JDBC40 Releted
 47  
          */
 48  3
         JDBC40,
 49  
 
 50  
         /**
 51  
          * JDBC41 Releted
 52  
          */
 53  3
         JDBC41,
 54  
 
 55  
         /**
 56  
          * JDBC42 Releted
 57  
          */
 58  3
         JDBC42,
 59  
 
 60  
         /**
 61  
          *
 62  
          */
 63  3
         QUARTZ
 64  
 }