|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SeverityEnum | |
org.sape.carbon.core.bootstrap | |
org.sape.carbon.core.component | |
org.sape.carbon.core.component.lifecycle | |
org.sape.carbon.core.component.proxy | |
org.sape.carbon.core.config | |
org.sape.carbon.core.config.node | |
org.sape.carbon.core.config.type | |
org.sape.carbon.core.exception | |
org.sape.carbon.core.util.classify | |
org.sape.carbon.core.util.enum | |
org.sape.carbon.core.util.reflection | |
org.sape.carbon.services.cache | The Cache Service is designed to cache frequently used data in a refreshable, high performance, thread-safe fashion. |
org.sape.carbon.services.carbonmanagement | |
org.sape.carbon.services.deployment |
The DeploymentService is designed to help manage differences
in configurations between application deployments. |
org.sape.carbon.services.ejb | The EJB service facilitates Enterprise Java Bean lookup via a variety of factory methods. |
org.sape.carbon.services.email | Contains the interfaces and implementations of an email sending service. |
org.sape.carbon.services.jmx.server | |
org.sape.carbon.services.log.console | This package contains a graphical user interface for viewing log messages. |
org.sape.carbon.services.scheduler | |
org.sape.carbon.services.sql |
The Carbon SQL service comprises of
SqlStatementFactory - The functional interface to the component
DefaultStatementFactoryImpl - The default funtional implementation that defines the
createPreparedStatement and createCallableStatement methods. |
org.sape.carbon.services.threadpool | |
org.sape.carbon.services.uniqueid | The Carbon Unique ID Service solves the problem of generating unique IDs for data that are independent of the data representation itself. |
Uses of SeverityEnum in org.sape.carbon.core.bootstrap |
Methods in org.sape.carbon.core.bootstrap that return SeverityEnum | |
SeverityEnum |
BootStrapException.getSeverity()
The severity of this exception. |
Uses of SeverityEnum in org.sape.carbon.core.component |
Methods in org.sape.carbon.core.component that return SeverityEnum | |
SeverityEnum |
ComponentNotFoundException.getSeverity()
Returns the severity of this exception |
Uses of SeverityEnum in org.sape.carbon.core.component.lifecycle |
Methods in org.sape.carbon.core.component.lifecycle that return SeverityEnum | |
SeverityEnum |
StateTransitionException.getSeverity()
|
SeverityEnum |
OperationNotSupportedException.getSeverity()
|
SeverityEnum |
NonFatalStateTransitionException.getSeverity()
|
SeverityEnum |
InvalidStateException.getSeverity()
Retrieves the severity of this exception. |
SeverityEnum |
ComponentUnavailableException.getSeverity()
The severity of this failure |
Uses of SeverityEnum in org.sape.carbon.core.component.proxy |
Methods in org.sape.carbon.core.component.proxy that return SeverityEnum | |
SeverityEnum |
MonitorAcquisitionException.getSeverity()
|
SeverityEnum |
InvalidListenerException.getSeverity()
|
Uses of SeverityEnum in org.sape.carbon.core.config |
Methods in org.sape.carbon.core.config that return SeverityEnum | |
SeverityEnum |
InvalidConfigurationException.getSeverity()
Retrieves the severity of this exception. |
SeverityEnum |
ConfigurationRuntimeException.getSeverity()
|
SeverityEnum |
ConfigurationInitializtionException.getSeverity()
|
SeverityEnum |
ConfigurationException.getSeverity()
|
Uses of SeverityEnum in org.sape.carbon.core.config.node |
Methods in org.sape.carbon.core.config.node that return SeverityEnum | |
SeverityEnum |
NodeRemovedException.getSeverity()
|
Uses of SeverityEnum in org.sape.carbon.core.config.type |
Methods in org.sape.carbon.core.config.type that return SeverityEnum | |
SeverityEnum |
ConfigurationTypeException.getSeverity()
Retrieves the severity of this exception. |
Uses of SeverityEnum in org.sape.carbon.core.exception |
Fields in org.sape.carbon.core.exception declared as SeverityEnum | |
private SeverityEnum |
DefaultExceptionDelegateImpl.severity
The severity of this exception (how bad it was). |
Methods in org.sape.carbon.core.exception that return SeverityEnum | |
SeverityEnum |
InvalidParameterException.getSeverity()
|
SeverityEnum |
IllegalStateException.getSeverity()
|
SeverityEnum |
ExceptionDelegate.getSeverity()
Retrieves the harshness or how serious this failure is. |
SeverityEnum |
Exceptionable.getSeverity()
Retrieves the severity of the current exception. |
SeverityEnum |
DefaultExceptionDelegateImpl.getSeverity()
Returns te severity of the underlying exception. |
abstract SeverityEnum |
BaseRuntimeException.getSeverity()
This method must be overriden by subclasses so that they may declare their severity |
abstract SeverityEnum |
BaseException.getSeverity()
This method must be overriden by subclasses so that they may declare their severity |
Methods in org.sape.carbon.core.exception with parameters of type SeverityEnum | |
ExceptionDelegate |
ExceptionDelegateFactory.createDelegate(Class exceptionSource,
SeverityEnum severity,
Throwable delegatee,
String message,
Throwable cause)
Creates an exception delegate. |
void |
ExceptionDelegate.setSeverity(SeverityEnum severity)
Sets the harshness or how serious this failure is. |
void |
DefaultExceptionDelegateImpl.setSeverity(SeverityEnum severity)
Sets the severity of the exception. |
Uses of SeverityEnum in org.sape.carbon.core.util.classify |
Fields in org.sape.carbon.core.util.classify declared as SeverityEnum | |
static SeverityEnum |
SeverityEnum.FATAL
Should be used when the system encounters a critical error which affects the accuracy, integrity or capability of the system as a whole, not just the current request/transaction. |
static SeverityEnum |
SeverityEnum.ERROR
Severity to be used when the system encountered an error which it could not handle and was forced to terminate the current operation, but concurrent and future requests should not be affected. |
static SeverityEnum |
SeverityEnum.WARN
Severity to be used when the system encountered a recoverable error, which should non-the-less be logged as its occurrence is significant. |
static SeverityEnum |
SeverityEnum.DEBUG
Severity to be used for moderately detailed information needed to debug system problems. |
static SeverityEnum |
SeverityEnum.INFO
Severity to be used for all interesting periodic events so that anyone browsing the logs should be able to see the amount and kind of processing occurring in the system |
static SeverityEnum |
SeverityEnum.TRACE
Severity to be used for high verbosity debug logging that could significantly affect the performance of the system. |
Methods in org.sape.carbon.core.util.classify that return SeverityEnum | |
static SeverityEnum |
SeverityEnum.getByName(String name)
Looks up a SeverityEnum by its string representation |
static SeverityEnum |
SeverityEnum.getByOrdinal(int ordinal)
Looks up a SeverityEnum by its ordinal representation |
Uses of SeverityEnum in org.sape.carbon.core.util.enum |
Methods in org.sape.carbon.core.util.enum that return SeverityEnum | |
SeverityEnum |
EnumNotFoundException.getSeverity()
|
Uses of SeverityEnum in org.sape.carbon.core.util.reflection |
Methods in org.sape.carbon.core.util.reflection that return SeverityEnum | |
SeverityEnum |
ReflectionRuntimeException.getSeverity()
|
Uses of SeverityEnum in org.sape.carbon.services.cache |
Methods in org.sape.carbon.services.cache that return SeverityEnum | |
SeverityEnum |
CacheException.getSeverity()
Returns the severity of this exception. |
Uses of SeverityEnum in org.sape.carbon.services.carbonmanagement |
Methods in org.sape.carbon.services.carbonmanagement that return SeverityEnum | |
SeverityEnum |
CarbonManagementServiceException.getSeverity()
|
Uses of SeverityEnum in org.sape.carbon.services.deployment |
Methods in org.sape.carbon.services.deployment that return SeverityEnum | |
SeverityEnum |
DeploymentServiceException.getSeverity()
|
Uses of SeverityEnum in org.sape.carbon.services.ejb |
Methods in org.sape.carbon.services.ejb that return SeverityEnum | |
SeverityEnum |
HomeFactoryNamingException.getSeverity()
Accessor method for retrieving the severity enumeration associated with this exception. |
SeverityEnum |
HomeFactoryException.getSeverity()
Accessor method for retrieving the severity enumeration associated with this exception. |
SeverityEnum |
HomeFactoryClassNotFoundException.getSeverity()
Accessor method for retrieving the severity enumeration associated with this exception. |
SeverityEnum |
HomeFactoryClassCastException.getSeverity()
Accessor method for retrieving the severity enumeration associated with this exception. |
Uses of SeverityEnum in org.sape.carbon.services.email |
Methods in org.sape.carbon.services.email that return SeverityEnum | |
SeverityEnum |
MailException.getSeverity()
|
Uses of SeverityEnum in org.sape.carbon.services.jmx.server |
Methods in org.sape.carbon.services.jmx.server that return SeverityEnum | |
SeverityEnum |
MBeanServerException.getSeverity()
|
Uses of SeverityEnum in org.sape.carbon.services.log.console |
Fields in org.sape.carbon.services.log.console declared as SeverityEnum | |
SeverityEnum |
LogView.LogMessage.severity
|
Methods in org.sape.carbon.services.log.console that return SeverityEnum | |
SeverityEnum |
LogView.LogMessage.getSeverity()
|
Methods in org.sape.carbon.services.log.console with parameters of type SeverityEnum | |
void |
LogView.addMessage(String sourceClass,
SeverityEnum severity,
Object msg)
|
protected void |
ConsoleLogger.enqueueMessage(String sourceClass,
SeverityEnum severity,
Object message)
|
Constructors in org.sape.carbon.services.log.console with parameters of type SeverityEnum | |
LogView.LogMessage(String sourceClass,
SeverityEnum severity,
Object message)
|
Uses of SeverityEnum in org.sape.carbon.services.scheduler |
Methods in org.sape.carbon.services.scheduler that return SeverityEnum | |
SeverityEnum |
UnrecoverableTaskException.getSeverity()
|
Uses of SeverityEnum in org.sape.carbon.services.sql |
Methods in org.sape.carbon.services.sql that return SeverityEnum | |
SeverityEnum |
StatementNotConfiguredException.getSeverity()
|
SeverityEnum |
StatementFactoryException.getSeverity()
|
Uses of SeverityEnum in org.sape.carbon.services.threadpool |
Methods in org.sape.carbon.services.threadpool that return SeverityEnum | |
SeverityEnum |
ThreadPoolRuntimeException.getSeverity()
returns SeverityEnum.INFO |
Uses of SeverityEnum in org.sape.carbon.services.uniqueid |
Methods in org.sape.carbon.services.uniqueid that return SeverityEnum | |
SeverityEnum |
UniqueIDServiceException.getSeverity()
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |