Uses of Interface
com.aspectran.core.service.CoreService
-
Packages that use CoreService Package Description com.aspectran.core.context A Package for providing core components and configuring an execution environment.com.aspectran.core.service A Package for providing core components and configuring an execution environment.com.aspectran.daemon.service Contains a variant of the service interface for Aspectran Daemon.com.aspectran.embed.service Contains a variant of the service interface for embedded Aspectran.com.aspectran.scheduler.service Contains a variant of the service interface for Aspectran Scheduler.com.aspectran.shell.service Contains a variant of the service interface for command-line application.com.aspectran.web.service Contains a variant of the service interface for web application. -
-
Uses of CoreService in com.aspectran.core.context
Methods in com.aspectran.core.context that return CoreService Modifier and Type Method Description CoreService
ActivityContext. getRootService()
Returns the Aspectran Service that created the current ActivityContext.CoreService
AspectranActivityContext. getRootService()
Methods in com.aspectran.core.context with parameters of type CoreService Modifier and Type Method Description void
ActivityContext. setRootService(CoreService rootService)
Sets the Aspectran Service that created the current ActivityContext.void
AspectranActivityContext. setRootService(CoreService rootService)
-
Uses of CoreService in com.aspectran.core.service
Classes in com.aspectran.core.service that implement CoreService Modifier and Type Class Description class
AbstractCoreService
The Class AbstractCoreService.class
AspectranCoreService
The Class AspectranCoreService.Methods in com.aspectran.core.service with parameters of type CoreService Modifier and Type Method Description void
AbstractCoreService. joinDerivedService(CoreService coreService)
void
CoreService. joinDerivedService(CoreService coreService)
Add a derived core service.Constructors in com.aspectran.core.service with parameters of type CoreService Constructor Description AbstractCoreService(CoreService rootService)
AspectranCoreService(CoreService rootService)
-
Uses of CoreService in com.aspectran.daemon.service
Subinterfaces of CoreService in com.aspectran.daemon.service Modifier and Type Interface Description interface
DaemonService
The Interface DaemonService.Classes in com.aspectran.daemon.service that implement CoreService Modifier and Type Class Description class
AspectranDaemonService
The Class AspectranDaemonService. -
Uses of CoreService in com.aspectran.embed.service
Subinterfaces of CoreService in com.aspectran.embed.service Modifier and Type Interface Description interface
EmbeddedAspectran
The Interface EmbeddedAspectran.Classes in com.aspectran.embed.service that implement CoreService Modifier and Type Class Description class
DefaultEmbeddedAspectran
Provides an interface that can be used by embedding Aspectran in Java applications. -
Uses of CoreService in com.aspectran.scheduler.service
Constructors in com.aspectran.scheduler.service with parameters of type CoreService Constructor Description QuartzSchedulerService(CoreService coreService)
-
Uses of CoreService in com.aspectran.shell.service
Subinterfaces of CoreService in com.aspectran.shell.service Modifier and Type Interface Description interface
ShellService
The Interface ShellService.Classes in com.aspectran.shell.service that implement CoreService Modifier and Type Class Description class
AbstractShellService
Abstract base class forShellService
implementations.class
AspectranShellService
Provides an interactive shell that lets you use or control Aspectran directly from the command line. -
Uses of CoreService in com.aspectran.web.service
Subinterfaces of CoreService in com.aspectran.web.service Modifier and Type Interface Description interface
WebService
The Interface WebService.Classes in com.aspectran.web.service that implement CoreService Modifier and Type Class Description class
AspectranWebService
Provides overall functionality for building web applications within a web application container.Methods in com.aspectran.web.service with parameters of type CoreService Modifier and Type Method Description static AspectranWebService
AspectranWebService. create(javax.servlet.ServletContext servletContext, CoreService rootService)
Returns a new instance ofAspectranWebService
.
-