Interface ServiceNameFactoryProvider
-
- All Superinterfaces:
ServiceNameFactory
- All Known Implementing Classes:
CommonRequirement
public interface ServiceNameFactoryProvider extends ServiceNameFactory
Provides a factory for generating aServiceNamefor a capability.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default org.jboss.msc.service.ServiceNamegetServiceName(org.jboss.as.controller.capability.CapabilityServiceSupport support)Creates aServiceNameappropriate for the specified name.default org.jboss.msc.service.ServiceNamegetServiceName(org.jboss.as.controller.OperationContext context)Creates aServiceNameappropriate for the specified name.ServiceNameFactorygetServiceNameFactory()
-
-
-
Method Detail
-
getServiceNameFactory
ServiceNameFactory getServiceNameFactory()
-
getServiceName
default org.jboss.msc.service.ServiceName getServiceName(org.jboss.as.controller.OperationContext context)
Description copied from interface:ServiceNameFactoryCreates aServiceNameappropriate for the specified name.- Specified by:
getServiceNamein interfaceServiceNameFactory- Parameters:
context- an operation context- Returns:
- a
ServiceName
-
getServiceName
default org.jboss.msc.service.ServiceName getServiceName(org.jboss.as.controller.capability.CapabilityServiceSupport support)
Description copied from interface:ServiceNameFactoryCreates aServiceNameappropriate for the specified name.- Specified by:
getServiceNamein interfaceServiceNameFactory- Parameters:
support- support for capability services- Returns:
- a
ServiceName
-
-