/************************************************************************* * * * CESeCore: CE Security Core * * * * This software is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public * * License as published by the Free Software Foundation; either * * version 2.1 of the License, or any later version. * * * * See terms of license at gnu.org. * * * *************************************************************************/ package org.cesecore.audit.enums; /** * Specifies the status of an operation. When trying to do a secure log through the SecureEventsLogger session bean, it is necessary * to specify if the overall operation resulted in FAILURE, SUCCESS or if it doens't matter VOID. * * @version $Id: EventStatus.java 20945 2015-03-19 18:04:33Z jeklund $ * */ public enum EventStatus { /** Operation failed. */ FAILURE, /** Operation succeeded. */ SUCCESS, /** Operation completed without a defined result. */ VOID }