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 ServiceNameServiceName. JBOSSThe root name "jboss".Methods in org.jboss.msc.service that return ServiceName Modifier and Type Method Description ServiceNameServiceName. append(String... parts)Create a service name by appending name parts using this as a parent to the new ServiceName.ServiceNameServiceName. append(ServiceName serviceName)Create a service name by appending name parts of the provided ServiceName using this as a parent.ServiceNameServiceName. 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.ServiceNameDelegatingServiceController. getName()Deprecated.ServiceNameServiceController. getName()Deprecated.UseServiceController#provides()instead.ServiceNameServiceName. getParent()Get the parent (enclosing) service name.ServiceNameStartException. getServiceName()static ServiceNameServiceName. of(String... parts)Create a ServiceName from a series of String parts.static ServiceNameServiceName. of(ServiceName parent, String... parts)Create a ServiceName from a series of String parts and a parent service name.static ServiceNameServiceName. 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.ServiceContainerDelegatingServiceContainer. addDependency(ServiceName dependency)Deprecated.ServiceTargetDelegatingServiceTarget. addDependency(ServiceName dependency)Deprecated.<I> ServiceBuilder<T>ServiceBuilder. addDependency(ServiceName dependency, Class<I> type, Injector<I> target)Deprecated.UseServiceBuilder.requires(ServiceName)instead.ServiceTargetServiceTarget. 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.ServiceNameServiceName. append(ServiceName serviceName)Create a service name by appending name parts of the provided ServiceName using this as a parent.ServiceNameServiceName. commonAncestorOf(ServiceName other)Return the service name that is the nearest common ancestor of the this name and the given one.intServiceName. compareTo(ServiceName o)Compare two service names lexicographically.booleanServiceName. 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, returningnullif it is not found.ServiceController<?>DelegatingServiceRegistry. getService(ServiceName serviceName)Get a service, returningnullif it is not found.ServiceController<?>ServiceRegistry. getService(ServiceName serviceName)Get a service, returningnullif it is not found.booleanServiceName. isParentOf(ServiceName other)Determine whether this service name is the same as, or a parent of, the given service name.static ServiceNameServiceName. 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.voidStartException. setServiceName(ServiceName serviceName)Constructors in org.jboss.msc.service with parameters of type ServiceName Constructor Description CircularDependencyException(String msg, ServiceName[] cycle)Constructs aCircularDependencyExceptionwith the specified detail message.StartException(String message, Throwable cause, ServiceName serviceName)
-