1 // Copyright 2006-2007, by the California Institute of Technology. 2 // ALL RIGHTS RESERVED. United States Government Sponsorship acknowledged. 3 // Any commercial use must be negotiated with the Office of Technology Transfer 4 // at the California Institute of Technology. 5 // 6 // This software is subject to U. S. export control laws and regulations 7 // (22 C.F.R. 120-130 and 15 C.F.R. 730-774). To the extent that the software 8 // is subject to U.S. export control laws and regulations, the recipient has 9 // the responsibility to obtain export licenses or other export authority as 10 // may be required before exporting such information to foreign countries or 11 // providing access to foreign nationals. 12 // 13 // $Id: ToolsLevel.java 3461 2008-08-07 17:43:26Z pramirez $ 14 // 15 16 package gov.nasa.pds.tools.logging; 17 18 import java.util.logging.Level; 19 20 /*** 21 * @author pramirez 22 * @version $Revision: 3461 $ 23 * 24 */ 25 public class ToolsLevel extends Level { 26 public static final Level NOTIFICATION = new ToolsLevel("NOTIFICATION", Level.SEVERE.intValue() + 3); 27 public static final Level CONFIGURATION = new ToolsLevel("CONFIGURATION", Level.SEVERE.intValue() + 2); 28 public static final Level PARAMETER = new ToolsLevel("PARAMETER", Level.SEVERE.intValue() + 1); 29 30 31 protected ToolsLevel(String name, int value) { 32 super(name, value); 33 } 34 35 }