All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gov.nasa.pds.citool.logging.ToolsLevel Maven / Gradle / Ivy

Go to download

The Legacy Catalog Tool provides functionality for ingesting PDS3 catalog files into the PDS4 infrastructure including the Registry Service.

There is a newer version: 3.1.0
Show newest version
// $Id: ToolsLevel.java 5853 2010-02-06 22:54:00Z shardman $
//

package gov.nasa.pds.citool.logging;

import java.util.logging.Level;

/**
 * @author pramirez
 * @version $Revision: 5853 $
 * 
 */
public class ToolsLevel extends Level {
	
	public static final Level CONFIGURATION = new ToolsLevel("CONFIGURATION",
            Level.SEVERE.intValue() + 9);	
	public static final Level PARAMETER = new ToolsLevel("PARAMETER",
            Level.SEVERE.intValue() + 8);
    public static final Level INGEST_ASSOC_SKIP = new ToolsLevel("SKIP",
            Level.SEVERE.intValue() + 7);
    public static final Level SKIP = new ToolsLevel("SKIP",
            Level.SEVERE.intValue() + 6);
    public static final Level INGEST_FAIL = new ToolsLevel("FAILURE",
            Level.SEVERE.intValue() + 5);
    public static final Level INGEST_ASSOC_FAIL = new ToolsLevel("FAILURE",
            Level.SEVERE.intValue() + 4);
    public static final Level INGEST_SUCCESS = new ToolsLevel("SUCCESS",
            Level.SEVERE.intValue() + 3);
    public static final Level INGEST_ASSOC_SUCCESS = new ToolsLevel("SUCCESS",
            Level.SEVERE.intValue() + 2);
    public static final Level NOTIFICATION = new ToolsLevel("NOTIFICATION",
            Level.SEVERE.intValue() + 1);
    
    protected ToolsLevel(String name, int value) {
        super(name, value);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy