Interface BinaryServiceNameFactoryProvider
-
- All Superinterfaces:
BinaryServiceNameFactory
- All Known Subinterfaces:
DefaultableBinaryServiceNameFactoryProvider
public interface BinaryServiceNameFactoryProvider extends BinaryServiceNameFactory
Provides a factory for generating aServiceNamefor a binary 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 parent, String child)Creates aServiceNameappropriate for the specified name.default org.jboss.msc.service.ServiceNamegetServiceName(org.jboss.as.controller.OperationContext context, String parent, String child)Creates aServiceNameappropriate for the specified name.BinaryServiceNameFactorygetServiceNameFactory()-
Methods inherited from interface org.jboss.as.clustering.controller.BinaryServiceNameFactory
getServiceName
-
-
-
-
Method Detail
-
getServiceNameFactory
BinaryServiceNameFactory getServiceNameFactory()
-
getServiceName
default org.jboss.msc.service.ServiceName getServiceName(org.jboss.as.controller.OperationContext context, String parent, String child)Description copied from interface:BinaryServiceNameFactoryCreates aServiceNameappropriate for the specified name.- Specified by:
getServiceNamein interfaceBinaryServiceNameFactory- Parameters:
context- an operation contextparent- a parent resource namechild- a child resource name- Returns:
- a
ServiceName
-
getServiceName
default org.jboss.msc.service.ServiceName getServiceName(org.jboss.as.controller.capability.CapabilityServiceSupport support, String parent, String child)Description copied from interface:BinaryServiceNameFactoryCreates aServiceNameappropriate for the specified name.- Specified by:
getServiceNamein interfaceBinaryServiceNameFactory- Parameters:
support- support for capability servicesparent- a parent resource namechild- a child resource name- Returns:
- a
ServiceName
-
-