Interface UnaryServiceNameFactoryProvider
-
- All Superinterfaces:
UnaryServiceNameFactory
- All Known Subinterfaces:
DefaultableUnaryServiceNameFactoryProvider
- All Known Implementing Classes:
CommonUnaryRequirement
public interface UnaryServiceNameFactoryProvider extends UnaryServiceNameFactory
Provides a factory for generating aServiceNamefor a unary requirement.- 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, String name)Creates aServiceNameappropriate for the specified name.default org.jboss.msc.service.ServiceNamegetServiceName(org.jboss.as.controller.OperationContext context, String name)Creates aServiceNameappropriate for the specified name.UnaryServiceNameFactorygetServiceNameFactory()-
Methods inherited from interface org.jboss.as.clustering.controller.UnaryServiceNameFactory
getServiceName
-
-
-
-
Method Detail
-
getServiceNameFactory
UnaryServiceNameFactory getServiceNameFactory()
-
getServiceName
default org.jboss.msc.service.ServiceName getServiceName(org.jboss.as.controller.OperationContext context, String name)Description copied from interface:UnaryServiceNameFactoryCreates aServiceNameappropriate for the specified name.- Specified by:
getServiceNamein interfaceUnaryServiceNameFactory- Parameters:
context- an operation contextname- a potentially null name- Returns:
- a
ServiceName
-
getServiceName
default org.jboss.msc.service.ServiceName getServiceName(org.jboss.as.controller.capability.CapabilityServiceSupport support, String name)Description copied from interface:UnaryServiceNameFactoryCreates aServiceNameappropriate for the specified name.- Specified by:
getServiceNamein interfaceUnaryServiceNameFactory- Parameters:
support- support for capability servicesname- a potentially null name- Returns:
- a
ServiceName
-
-