Uses of Class
org.jboss.msc.service.ServiceName
-
Packages that use ServiceName Package Description org.jboss.msc.service The service container implementation itself. -
-
Uses of ServiceName in org.jboss.msc.service
Fields in org.jboss.msc.service declared as ServiceName Modifier and Type Field Description static ServiceName
ServiceName. JBOSS
The root name "jboss".Methods in org.jboss.msc.service that return ServiceName Modifier and Type Method Description ServiceName
ServiceName. append(String... parts)
Create a service name by appending name parts using this as a parent to the new ServiceName.ServiceName
ServiceName. append(ServiceName serviceName)
Create a service name by appending name parts of the provided ServiceName using this as a parent.ServiceName
ServiceName. commonAncestorOf(ServiceName other)
Return the service name that is the nearest common ancestor of the this name and the given one.ServiceName[]
DelegatingServiceController. getAliases()
Deprecated.ServiceName[]
ServiceController. getAliases()
Deprecated.UseServiceController#provides()
instead.ServiceName[]
CircularDependencyException. getCycle()
Returns a cycle found during service installation.ServiceName
DelegatingServiceController. getName()
Deprecated.ServiceName
ServiceController. getName()
Deprecated.UseServiceController#provides()
instead.ServiceName
ServiceName. getParent()
Get the parent (enclosing) service name.ServiceName
StartException. getServiceName()
static ServiceName
ServiceName. of(String... parts)
Create a ServiceName from a series of String parts.static ServiceName
ServiceName. of(ServiceName parent, String... parts)
Create a ServiceName from a series of String parts and a parent service name.static ServiceName
ServiceName. parse(String original)
Parse a string-form service name.Methods in org.jboss.msc.service that return types with arguments of type ServiceName Modifier and Type Method Description List<ServiceName>
DelegatingServiceContainer. getServiceNames()
Get a list of service names installed in this registry.List<ServiceName>
DelegatingServiceRegistry. getServiceNames()
Get a list of service names installed in this registry.List<ServiceName>
ServiceRegistry. getServiceNames()
Get a list of service names installed in this registry.Collection<ServiceName>
DelegatingServiceController. getUnavailableDependencies()
Deprecated.Collection<ServiceName>
ServiceController. getUnavailableDependencies()
Deprecated.UseServiceController#missing()
instead.Set<ServiceName>
DelegatingServiceController. missing()
Get the names of all missing values this service require.Set<ServiceName>
ServiceController. missing()
Get the names of all missing values this service require.Set<ServiceName>
DelegatingServiceController. provides()
Get the names of all values this service provide.Set<ServiceName>
ServiceController. provides()
Get the names of all values this service provide.Set<ServiceName>
DelegatingServiceController. requires()
Get the names of all values this service require.Set<ServiceName>
ServiceController. requires()
Get the names of all values this service require.Methods in org.jboss.msc.service with parameters of type ServiceName Modifier and Type Method Description ServiceBuilder<T>
DelegatingServiceBuilder. addAliases(ServiceName... aliases)
Deprecated.ServiceBuilder<T>
ServiceBuilder. addAliases(ServiceName... aliases)
Deprecated.UseServiceBuilder.provides(ServiceName...)
instead.<I> ServiceBuilder<T>
DelegatingServiceBuilder. addDependency(ServiceName dependency, Class<I> type, Injector<I> target)
Deprecated.ServiceContainer
DelegatingServiceContainer. addDependency(ServiceName dependency)
Deprecated.ServiceTarget
DelegatingServiceTarget. addDependency(ServiceName dependency)
Deprecated.<I> ServiceBuilder<T>
ServiceBuilder. addDependency(ServiceName dependency, Class<I> type, Injector<I> target)
Deprecated.UseServiceBuilder.requires(ServiceName)
instead.ServiceTarget
ServiceTarget. addDependency(ServiceName dependency)
Deprecated.This method will be removed in a future release.ServiceBuilder<?>
DelegatingServiceContainer. addService(ServiceName name)
Deprecated.<T> ServiceBuilder<T>
DelegatingServiceContainer. addService(ServiceName name, Service<T> service)
Deprecated.ServiceBuilder<?>
DelegatingServiceTarget. addService(ServiceName name)
Deprecated.<T> ServiceBuilder<T>
DelegatingServiceTarget. addService(ServiceName name, Service<T> service)
Deprecated.ServiceBuilder<?>
ServiceTarget. addService(ServiceName name)
Deprecated.UseServiceTarget.addService()
instead.<T> ServiceBuilder<T>
ServiceTarget. addService(ServiceName name, Service<T> service)
Deprecated.UseServiceTarget.addService()
instead.ServiceName
ServiceName. append(ServiceName serviceName)
Create a service name by appending name parts of the provided ServiceName using this as a parent.ServiceName
ServiceName. commonAncestorOf(ServiceName other)
Return the service name that is the nearest common ancestor of the this name and the given one.int
ServiceName. compareTo(ServiceName o)
Compare two service names lexicographically.boolean
ServiceName. equals(ServiceName o)
Compare this service name to another service name.ServiceController<?>
DelegatingServiceContainer. getRequiredService(ServiceName serviceName)
Get a service, throwing an exception if it is not found.ServiceController<?>
DelegatingServiceRegistry. getRequiredService(ServiceName serviceName)
Get a service, throwing an exception if it is not found.ServiceController<?>
ServiceRegistry. getRequiredService(ServiceName serviceName)
Get a service, throwing an exception if it is not found.ServiceController<?>
DelegatingServiceContainer. getService(ServiceName serviceName)
Get a service, returningnull
if it is not found.ServiceController<?>
DelegatingServiceRegistry. getService(ServiceName serviceName)
Get a service, returningnull
if it is not found.ServiceController<?>
ServiceRegistry. getService(ServiceName serviceName)
Get a service, returningnull
if it is not found.boolean
ServiceName. isParentOf(ServiceName other)
Determine whether this service name is the same as, or a parent of, the given service name.static ServiceName
ServiceName. of(ServiceName parent, String... parts)
Create a ServiceName from a series of String parts and a parent service name.<V> Consumer<V>
DelegatingServiceBuilder. provides(ServiceName... names)
Specifies value provided by service.<V> Consumer<V>
ServiceBuilder. provides(ServiceName... names)
Specifies value provided by service.<V> Supplier<V>
DelegatingServiceBuilder. requires(ServiceName name)
Specifies value name required by service.<V> Supplier<V>
ServiceBuilder. requires(ServiceName name)
Specifies value name required by service.void
StartException. setServiceName(ServiceName serviceName)
Constructors in org.jboss.msc.service with parameters of type ServiceName Constructor Description CircularDependencyException(String msg, ServiceName[] cycle)
Constructs aCircularDependencyException
with the specified detail message.StartException(String message, Throwable cause, ServiceName serviceName)
-