Uses of Class
javax.slee.facilities.FacilityException

Packages that use FacilityException
javax.slee.facilities   
javax.slee.profile   
 

Uses of FacilityException in javax.slee.facilities
 

Methods in javax.slee.facilities that throw FacilityException
 void ActivityContextNamingFacility.bind(ActivityContextInterface aci, java.lang.String name)
          Bind an Activity Context to a name.
 void TimerFacility.cancelTimer(TimerID timerID)
          Cancel a previously set timer.
 boolean AlarmFacility.clearAlarm(java.lang.String alarmID)
          Request that the alarm with the specified alarm identifier be cleared.
 int AlarmFacility.clearAlarms()
          Request that all alarms belonging to the notification source associated with the AlarmFacility object be cleared.
 int AlarmFacility.clearAlarms(java.lang.String alarmType)
          Request that all alarms of the specified type be cleared.
 void Tracer.config(java.lang.String message)
          Emit a trace message at the TraceLevel.CONFIG trace level.
 void Tracer.config(java.lang.String message, java.lang.Throwable cause)
          Emit a trace message with a cause throwable at the TraceLevel.CONFIG trace level.
 void AlarmFacility.createAlarm(ComponentID alarmSource, Level alarmLevel, java.lang.String alarmType, java.lang.String message, long timestamp)
          Deprecated. This method uses a ComponentID to identify a notification source and thus is not compatible with the changes made to the alarm subsystem in SLEE 1.1. In addition the levels provided by the Level class were not practical for stateful alarm use. This method has been replaced with AlarmFacility.raiseAlarm(String,String,AlarmLevel,String).
 void AlarmFacility.createAlarm(ComponentID alarmSource, Level alarmLevel, java.lang.String alarmType, java.lang.String message, java.lang.Throwable cause, long timestamp)
          Deprecated. This method uses a ComponentID to identify a notification source and thus is not compatible with the changes made to the alarm subsystem in SLEE 1.1. In addition the levels provided by the Level class were not practical for stateful alarm use. This method has been replaced with AlarmFacility.raiseAlarm(String,String,AlarmLevel,String,Throwable).
 void TraceFacility.createTrace(ComponentID messageSource, Level traceLevel, java.lang.String messageType, java.lang.String message, long timestamp)
          Deprecated. This method uses a ComponentID to identify a notification source and thus was not flexible enough to be used by other objects in the SLEE. It has been replaced with Tracer.trace(TraceLevel, String).
 void TraceFacility.createTrace(ComponentID messageSource, Level traceLevel, java.lang.String messageType, java.lang.String message, java.lang.Throwable cause, long timestamp)
          Deprecated. This method uses a ComponentID to identify a notification source and thus was not flexible enough to be used by other objects in the SLEE. It has been replaced with Tracer.trace(TraceLevel, String, Throwable).
 void Tracer.fine(java.lang.String message)
          Emit a trace message at the TraceLevel.FINE trace level.
 void Tracer.fine(java.lang.String message, java.lang.Throwable cause)
          Emit a trace message with a cause throwable at the TraceLevel.FINE trace level.
 void Tracer.finer(java.lang.String message)
          Emit a trace message at the TraceLevel.FINER trace level.
 void Tracer.finer(java.lang.String message, java.lang.Throwable cause)
          Emit a trace message with a cause throwable at the TraceLevel.FINER trace level.
 void Tracer.finest(java.lang.String message)
          Emit a trace message at the TraceLevel.FINEST trace level.
 void Tracer.finest(java.lang.String message, java.lang.Throwable cause)
          Emit a trace message with a cause throwable at the TraceLevel.FINEST trace level.
 ActivityContextInterface TimerFacility.getActivityContextInterface(TimerID timerID)
          Get a reference to the Activity Context on which a timer was set.
 long TimerFacility.getDefaultTimeout()
          Get the default timeout period of the Timer Facility.
 FireableEventType EventLookupFacility.getFireableEventType(EventTypeID eventType)
          Get a FireableEventType object for a given event type.
 ReceivableService ServiceLookupFacility.getReceivableService(ServiceID service)
          Get information about the event types that a service may receive.
 long TimerFacility.getResolution()
          Get the approximate timer resolution of the Timer Facility.
 TraceLevel Tracer.getTraceLevel()
          Get the current effective trace level for this tracer.
 Level TraceFacility.getTraceLevel(ComponentID messageSource)
          Deprecated. This method uses a ComponentID to identify a notification source and thus was not flexible enough to be used by other objects in the SLEE. It has been replaced with Tracer.getTraceLevel().
 void Tracer.info(java.lang.String message)
          Emit a trace message at the TraceLevel.INFO trace level.
 void Tracer.info(java.lang.String message, java.lang.Throwable cause)
          Emit a trace message with a cause throwable at the TraceLevel.INFO trace level.
 boolean Tracer.isConfigEnabled()
          Determine if the current effective trace filter level for this tracer is sufficient to allow a TraceNotification to be generated by the TraceMBean if a trace message was emitted at the TraceLevel.CONFIG trace level using this tracer.
 boolean Tracer.isFineEnabled()
          Determine if the current effective trace filter level for this tracer is sufficient to allow a TraceNotification to be generated by the TraceMBean if a trace message was emitted at the TraceLevel.FINE trace level using this tracer.
 boolean Tracer.isFinerEnabled()
          Determine if the current effective trace filter level for this tracer is sufficient to allow a TraceNotification to be generated by the TraceMBean if a trace message was emitted at the TraceLevel.FINER trace level using this tracer.
 boolean Tracer.isFinestEnabled()
          Determine if the current effective trace filter level for this tracer is sufficient to allow a TraceNotification to be generated by the TraceMBean if a trace message was emitted at the TraceLevel.FINEST trace level using this tracer.
 boolean Tracer.isInfoEnabled()
          Determine if the current effective trace filter level for this tracer is sufficient to allow a TraceNotification to be generated by the TraceMBean if a trace message was emitted at the TraceLevel.INFO trace level using this tracer.
 boolean Tracer.isSevereEnabled()
          Determine if the current effective trace filter level for this tracer is sufficient to allow a TraceNotification to be generated by the TraceMBean if a trace message was emitted at the TraceLevel.SEVERE trace level using this tracer.
 boolean Tracer.isTraceable(TraceLevel level)
          Determine if the current effective trace level for this tracer is sufficient to allow a TraceNotification to be generated by the TraceMBean if a trace message was emitted at the specified trace level using this tracer.
 boolean Tracer.isWarningEnabled()
          Determine if the current effective trace filter level for this tracer is sufficient to allow a TraceNotification to be generated by the TraceMBean if a trace message was emitted at the TraceLevel.WARNING trace level using this tracer.
 ActivityContextInterface ActivityContextNamingFacility.lookup(java.lang.String name)
          Get a reference to the Activity Context bound to a particular name.
 java.lang.String AlarmFacility.raiseAlarm(java.lang.String alarmType, java.lang.String instanceID, AlarmLevel alarmLevel, java.lang.String message)
          Request that an alarm be raised with the specified message if an alarm with the same identifying attributes is not currently active.
 java.lang.String AlarmFacility.raiseAlarm(java.lang.String alarmType, java.lang.String instanceID, AlarmLevel alarmLevel, java.lang.String message, java.lang.Throwable cause)
          Request that an alarm be raised with the specified message and cause throwable if an alarm with the same identifying attributes is not currently active.
 TimerID TimerFacility.setTimer(ActivityContextInterface aci, Address address, long startTime, long period, int numRepetitions, TimerOptions options)
          Set a periodic timer.
 TimerID TimerFacility.setTimer(ActivityContextInterface aci, Address address, long expireTime, TimerOptions options)
          Set a non-periodic timer.
 void Tracer.severe(java.lang.String message)
          Emit a trace message at the TraceLevel.SEVERE trace level.
 void Tracer.severe(java.lang.String message, java.lang.Throwable cause)
          Emit a trace message with a cause throwable at the TraceLevel.SEVERE trace level.
 void Tracer.trace(TraceLevel level, java.lang.String message)
          Emit a trace message at the specified trace level.
 void Tracer.trace(TraceLevel level, java.lang.String message, java.lang.Throwable cause)
          Emit a trace message with a cause throwable at the specified trace level.
 void ActivityContextNamingFacility.unbind(java.lang.String name)
          Unbind a bound name.
 void Tracer.warning(java.lang.String message)
          Emit a trace message at the TraceLevel.WARNING trace level.
 void Tracer.warning(java.lang.String message, java.lang.Throwable cause)
          Emit a trace message with a cause throwable at the TraceLevel.WARNING trace level.
 

Uses of FacilityException in javax.slee.profile
 

Methods in javax.slee.profile that throw FacilityException
 ProfileID ProfileFacility.getProfileByIndexedAttribute(java.lang.String profileTableName, java.lang.String attributeName, java.lang.Object attributeValue)
          Deprecated. Replaced with getProfileTable(profileTableName).findProfileByAttribute(attributeName, attributeValue), which returns a Profile Local Interface object that can be used to interact with the profile directly, rather than a profile identifier which requires a secondary lookup via a get-profile-CMP method.
 java.util.Collection ProfileFacility.getProfiles(java.lang.String profileTableName)
          Deprecated. Replaced with getProfileTable(profileTableName).findAll(), which returns a collection of Profile Local Interface objects that can be used to interact with the profiles directly, rather than a collection of profile identifiers which require a secondary lookup via a get-profile-CMP method.
 java.util.Collection ProfileFacility.getProfilesByIndexedAttribute(java.lang.String profileTableName, java.lang.String attributeName, java.lang.Object attributeValue)
          Deprecated. Replaced with getProfileTable(profileTableName).findProfilesByAttribute(attributeName, attributeValue), which returns a collection of Profile Local Interface objects that can be used to interact with the profiles directly, rather than a collection of profile identifiers which require a secondary lookup via a get-profile-CMP method.
 ProfileTable ProfileFacility.getProfileTable(java.lang.String profileTableName)
          Get a ProfileTable object for a profile table.
 ProfileTableActivity ProfileFacility.getProfileTableActivity(java.lang.String profileTableName)
          Get a ProfileTableActivity object for a profile table.
 



Copyright © 2008. All Rights Reserved.