Package org.jboss.as.controller.parsing
Class ManagementSchemas
- java.lang.Object
-
- org.jboss.as.controller.parsing.ManagementSchemas
-
public abstract class ManagementSchemas extends Object
Factory for a set of schemas for a specific management file.- Author:
- Darran Lofthouse
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedManagementSchemas(Stability stability, ManagementXmlReaderWriter readerWriterDelegate, String localName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<ManagementXmlSchema>getAdditional()Get all the schemas in addition to the current schema for this management file.ManagementXmlSchemagetCurrent()Get the current supported schema.
-
-
-
Field Detail
-
CURRENT
public static final String CURRENT
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ManagementSchemas
protected ManagementSchemas(Stability stability, ManagementXmlReaderWriter readerWriterDelegate, String localName)
-
-
Method Detail
-
getCurrent
public ManagementXmlSchema getCurrent()
Get the current supported schema. This will have already taken into account the current stability level.- Returns:
- the current supported schemas across the different stability levels.
-
getAdditional
public Set<ManagementXmlSchema> getAdditional()
Get all the schemas in addition to the current schema for this management file.- Returns:
- all the schemas for this management file.
-
-