Package org.jboss.as.controller
Interface SubsystemResourceRegistration
-
- All Superinterfaces:
Feature,ResourceRegistration
- All Known Implementing Classes:
SubsystemResourceRegistration.DefaultSubsystemResourceRegistration
public interface SubsystemResourceRegistration extends ResourceRegistration
A subsystem resource registration.- Author:
- Paul Ferraro
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSubsystemResourceRegistration.DefaultSubsystemResourceRegistration-
Nested classes/interfaces inherited from interface org.jboss.as.controller.ResourceRegistration
ResourceRegistration.DefaultResourceRegistration
-
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description default StringgetName()Returns the name of this subsystem.static SubsystemResourceRegistrationof(String name)Creates a resource registration for the specified subsystem name.static SubsystemResourceRegistrationof(String name, Stability stability)Creates a new subsystem resource registration for the specified path and stability.-
Methods inherited from interface org.jboss.as.controller.Feature
getStability
-
Methods inherited from interface org.jboss.as.controller.ResourceRegistration
getPathElement
-
-
-
-
Method Detail
-
getName
default String getName()
Returns the name of this subsystem.- Returns:
- the name of this subsystem.
-
of
static SubsystemResourceRegistration of(String name)
Creates a resource registration for the specified subsystem name.- Parameters:
name- a subsystem name- Returns:
- a resource registration
-
of
static SubsystemResourceRegistration of(String name, Stability stability)
Creates a new subsystem resource registration for the specified path and stability.- Parameters:
path- a path elementstability- a stability level- Returns:
- a resource registration
-
-