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

org.jboss.security.audit.AuditLevel Maven / Gradle / Ivy

There is a newer version: 5.1.0.Final
Show newest version
/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */ 
package org.jboss.security.audit;

/**
 *  Define the Audit Levels of Severity
 *  @author Anil Saldhana
 *  @version $Revision$
 *  @since  Aug 21, 2006
 */
public interface AuditLevel
{
   /** Denotes situations where there has been a server exception */
  String ERROR = "Error";
  
  /** Denotes situations when there has been a failed attempt */
  String FAILURE = "Failure";
  
  String SUCCESS = "Success";
  
  /** Just some info being passed into the audit logs */
  String INFO = "Info";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy