Package org.jboss.as.controller.parsing
Interface ExtensionParsingContext
-
public interface ExtensionParsingContextContext in effect when theextensionelement for a givenExtensionis being parsed. Allows the extension toinitialize the XML parsersthat can be used for parsing thesubsystemelements that contain the configuration for its subsystems.- Author:
- David M. Lloyd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ProcessTypegetProcessType()Gets the type of the current process.RunningModegetRunningMode()Gets the current running mode of the process.voidsetProfileParsingCompletionHandler(ProfileParsingCompletionHandler handler)Registers aProfileParsingCompletionHandlerto receive a callback upon completion of parsing of a profile.voidsetSubsystemXmlMapping(String subsystemName, String namespaceUri, Supplier<org.jboss.staxmapper.XMLElementReader<List<org.jboss.dmr.ModelNode>>> supplier)Set the parser for the profile-wide subsystem configuration XML element.voidsetSubsystemXmlMapping(String subsystemName, String namespaceUri, org.jboss.staxmapper.XMLElementReader<List<org.jboss.dmr.ModelNode>> reader)Set the parser for the profile-wide subsystem configuration XML element.default <S extends SubsystemSchema<S>>
voidsetSubsystemXmlMappings(String subsystemName, Set<S> schemas)Set the parser for the profile-wide subsystem configuration XML element.
-
-
-
Method Detail
-
getProcessType
ProcessType getProcessType()
Gets the type of the current process.- Returns:
- the current process type. Will not be
null
-
getRunningMode
RunningMode getRunningMode()
Gets the current running mode of the process.- Returns:
- the current running mode. Will not be
null
-
setSubsystemXmlMapping
void setSubsystemXmlMapping(String subsystemName, String namespaceUri, org.jboss.staxmapper.XMLElementReader<List<org.jboss.dmr.ModelNode>> reader)
Set the parser for the profile-wide subsystem configuration XML element. The element is always called"subsystem". The reader should populate the given model node with the appropriate "subsystem add" update, without the address or operation name as that information will be automatically populated.- Parameters:
subsystemName- the name of the subsystem. Cannot benullnamespaceUri- the URI of the subsystem's XML namespace, in string form. Cannot benullreader- the element reader. Cannot benull- Throws:
IllegalStateException- if anotherExtensionhas already registered a subsystem with the givensubsystemName
-
setSubsystemXmlMapping
void setSubsystemXmlMapping(String subsystemName, String namespaceUri, Supplier<org.jboss.staxmapper.XMLElementReader<List<org.jboss.dmr.ModelNode>>> supplier)
Set the parser for the profile-wide subsystem configuration XML element. The element is always called"subsystem". The reader should populate the given model node with the appropriate "subsystem add" update, without the address or operation name as that information will be automatically populated. It is recommended that supplier always creates new instance of theXMLElementReaderinstead of caching and returning always same instance.- Parameters:
subsystemName- the name of the subsystem. Cannot benullnamespaceUri- the URI of the sussystem's XML namespace, in string form. Cannot benullsupplier- of the element reader. Cannot benull- Throws:
IllegalStateException- if anotherExtensionhas already registered a subsystem with the givensubsystemName
-
setSubsystemXmlMappings
default <S extends SubsystemSchema<S>> void setSubsystemXmlMappings(String subsystemName, Set<S> schemas)
Set the parser for the profile-wide subsystem configuration XML element. The element is always called"subsystem". The reader of the schema should populate the given model node with the appropriate "subsystem add" update, without the address or operation name as that information will be automatically populated.- Type Parameters:
S- the schema type- Parameters:
subsystemName- the name of the subsystem. Cannot benullschemas- a set of schemas to be registered
-
setProfileParsingCompletionHandler
void setProfileParsingCompletionHandler(ProfileParsingCompletionHandler handler)
Registers aProfileParsingCompletionHandlerto receive a callback upon completion of parsing of a profile.- Parameters:
handler- the handler. Cannot benull
-
-