Package org.jboss.as.controller
Interface AttributeParsers
-
public interface AttributeParsers- Author:
- Tomaz Cerar (c) 2015 Red Hat Inc.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAttributeParsers.AttributeElementParserstatic classAttributeParsers.MapParserstatic classAttributeParsers.NamedStringListParserstatic classAttributeParsers.ObjectMapParserstatic classAttributeParsers.ObjectParserstatic classAttributeParsers.PropertiesParserstatic classAttributeParsers.UnWrappedObjectListParserstatic classAttributeParsers.WrappedObjectListParser
-
Field Summary
Fields Modifier and Type Field Description static AttributeParserOBJECT_MAP_UNWRAPPEDstatic AttributeParserOBJECT_MAP_WRAPPEDstatic AttributeParserPROPERTIES_UNWRAPPEDstatic AttributeParserPROPERTIES_WRAPPEDstatic AttributeParserSIMPLESimple attribute parser, that loads attribute from xml attributestatic AttributeParserSIMPLE_ELEMENTsimple parser that loads attribute value from xml element with name of attribute and takes its content as value of attribute.static AttributeParserSTRING_LISTstatic AttributeParserSTRING_LIST_COMMA_DELIMITEDstatic AttributeParserSTRING_LIST_NAMED_ELEMENTstatic AttributeParserUNWRAPPED_OBJECT_LIST_PARSERstatic AttributeParserWRAPPED_OBJECT_LIST_PARSER
-
Method Summary
Static Methods Modifier and Type Method Description static AttributeParsergetObjectMapAttributeParser(String keyElementName)static AttributeParsergetObjectMapAttributeParser(String elementName, boolean wrapElement)static AttributeParsergetObjectMapAttributeParser(String wrapperElementName, boolean wrapElement, String elementName, String keyElementName)static AttributeParsergetObjectMapAttributeParser(String elementName, String keyElementName, boolean wrapElement)
-
-
-
Field Detail
-
SIMPLE
static final AttributeParser SIMPLE
Simple attribute parser, that loads attribute from xml attribute
-
SIMPLE_ELEMENT
static final AttributeParser SIMPLE_ELEMENT
simple parser that loads attribute value from xml element with name of attribute and takes its content as value of attribute.
-
PROPERTIES_WRAPPED
static final AttributeParser PROPERTIES_WRAPPED
-
PROPERTIES_UNWRAPPED
static final AttributeParser PROPERTIES_UNWRAPPED
-
OBJECT_MAP_WRAPPED
static final AttributeParser OBJECT_MAP_WRAPPED
-
OBJECT_MAP_UNWRAPPED
static final AttributeParser OBJECT_MAP_UNWRAPPED
-
WRAPPED_OBJECT_LIST_PARSER
static final AttributeParser WRAPPED_OBJECT_LIST_PARSER
-
UNWRAPPED_OBJECT_LIST_PARSER
static final AttributeParser UNWRAPPED_OBJECT_LIST_PARSER
-
STRING_LIST_NAMED_ELEMENT
static final AttributeParser STRING_LIST_NAMED_ELEMENT
-
STRING_LIST
static final AttributeParser STRING_LIST
-
STRING_LIST_COMMA_DELIMITED
static final AttributeParser STRING_LIST_COMMA_DELIMITED
-
-
Method Detail
-
getObjectMapAttributeParser
static AttributeParser getObjectMapAttributeParser(String keyElementName)
-
getObjectMapAttributeParser
static AttributeParser getObjectMapAttributeParser(String elementName, String keyElementName, boolean wrapElement)
-
getObjectMapAttributeParser
static AttributeParser getObjectMapAttributeParser(String elementName, boolean wrapElement)
-
getObjectMapAttributeParser
static AttributeParser getObjectMapAttributeParser(String wrapperElementName, boolean wrapElement, String elementName, String keyElementName)
-
-