Uses of Class
org.apache.xbean.kernel.ServiceNotFoundException

Packages that use ServiceNotFoundException
org.apache.xbean.kernel Defines the kernel interface for managing services and interfaces the kernel uses to interact with the services. 
org.apache.xbean.kernel.standard Provides the standard kernel implementation. 
 

Uses of ServiceNotFoundException in org.apache.xbean.kernel
 

Methods in org.apache.xbean.kernel that throw ServiceNotFoundException
 ClassLoader Kernel.getClassLoaderFor(ServiceName serviceName)
          Gets the class loader associated with the specifed service.
 Object Kernel.getService(ServiceName serviceName)
          Gets the service registered under the specified name.
 ServiceFactory Kernel.getServiceFactory(ServiceName serviceName)
          Gets the service factory registered under the specified name.
 long Kernel.getServiceStartTime(ServiceName serviceName)
          Gets the time the specified service entered the RUNNING state since the epoch (January 1, 1970, 00:00:00) in milliseconds.
 ServiceState Kernel.getServiceState(ServiceName serviceName)
          Gets the ServiceState of the specified service.
 boolean Kernel.isServiceEnabled(ServiceName serviceName)
          Determines if the service can be instantiated in a kernel.
 void Kernel.setServiceEnabled(ServiceName serviceName, boolean enabled)
          Sets the enabled status of a service.
 void Kernel.startService(ServiceName serviceName)
          Immediately starts the service using the SYNCHRONOUS start strategy.
 void Kernel.startService(ServiceName serviceName, StartStrategy startStrategy)
          Immediately starts the service using the specified start strategy.
 void Kernel.startServiceRecursive(ServiceName serviceName)
          Immediately starts the service, and if the start ultimately completes successfully, all services owned by the specified service, all services that are owned by those services, and so on, will be started using the startServiceRecursive(ServiceName) method.
 void Kernel.startServiceRecursive(ServiceName serviceName, StartStrategy startStrategy)
          Immediately starts the service, and if the start ultimately completes successfully, all services owned by the specified service, all services that are owned by those services, and so on, will be started using the startServiceRecursive(ServiceName, StartStrategy) method.
 void Kernel.stopService(ServiceName serviceName)
          Immediately stops the service using the SYNCHRONOUS stop strategy.
 void Kernel.stopService(ServiceName serviceName, StopStrategy stopStrategy)
          Immediately stops the service using the specified stop strategy.
 void Kernel.unregisterService(ServiceName serviceName)
          Unregisters a service from this kernel.
 void Kernel.unregisterService(ServiceName serviceName, StopStrategy stopStrategy)
          Unregisters a service from this kernel.
 

Uses of ServiceNotFoundException in org.apache.xbean.kernel.standard
 

Methods in org.apache.xbean.kernel.standard that throw ServiceNotFoundException
 ClassLoader StandardKernel.getClassLoaderFor(ServiceName serviceName)
          Gets the class loader associated with the specifed service.
 Object StandardKernel.getService(ServiceName serviceName)
          Gets the service registered under the specified name.
 ServiceFactory StandardKernel.getServiceFactory(ServiceName serviceName)
          Gets the service factory registered under the specified name.
 ServiceManager ServiceManagerRegistry.getServiceManager(ServiceName serviceName)
          Gets the service manager registered under the specified name.
 long StandardKernel.getServiceStartTime(ServiceName serviceName)
          Gets the time the specified service entered the RUNNING state since the epoch (January 1, 1970, 00:00:00) in milliseconds.
 ServiceState StandardKernel.getServiceState(ServiceName serviceName)
          Gets the ServiceState of the specified service.
 boolean StandardKernel.isServiceEnabled(ServiceName serviceName)
          Determines if the service can be instantiated in a kernel.
 void StandardKernel.setServiceEnabled(ServiceName serviceName, boolean enabled)
          Sets the enabled status of a service.
 void StandardKernel.startService(ServiceName serviceName)
          Immediately starts the service using the SYNCHRONOUS start strategy.
 void StandardKernel.startService(ServiceName serviceName, StartStrategy startStrategy)
          Immediately starts the service using the specified start strategy.
 void StandardKernel.startServiceRecursive(ServiceName serviceName)
          Immediately starts the service, and if the start ultimately completes successfully, all services owned by the specified service, all services that are owned by those services, and so on, will be started using the startServiceRecursive(ServiceName) method.
 void StandardKernel.startServiceRecursive(ServiceName serviceName, StartStrategy startStrategy)
          Immediately starts the service, and if the start ultimately completes successfully, all services owned by the specified service, all services that are owned by those services, and so on, will be started using the startServiceRecursive(ServiceName, StartStrategy) method.
 void StandardKernel.stopService(ServiceName serviceName)
          Immediately stops the service using the SYNCHRONOUS stop strategy.
 void StandardKernel.stopService(ServiceName serviceName, StopStrategy stopStrategy)
          Immediately stops the service using the specified stop strategy.
 void StandardKernel.unregisterService(ServiceName serviceName)
          Unregisters a service from this kernel.
 void StandardKernel.unregisterService(ServiceName serviceName, StopStrategy stopStrategy)
          Unregisters a service from this kernel.
 void ServiceManagerRegistry.unregisterService(ServiceName serviceName, StopStrategy stopStrategy)
          Stops and destorys the ServiceManager and then unregisters it.
 



Copyright © 2005-2008 Apache Software Foundation. All Rights Reserved.