public interface AttributeProxy
AttributeFactory
to create new attributes. Typically a new proxy class
is created which in turn knows how to create a specific kind of attribute, and then this proxy
class is installed in the AttributeFactory
.Modifier and Type | Method and Description |
---|---|
AttributeValue |
getInstance(Node root)
Tries to create a new
AttributeValue based on the given DOM root node. |
AttributeValue |
getInstance(String value,
String[] params)
Tries to create a new
AttributeValue based on the given String data. |
AttributeValue getInstance(Node root) throws Exception
AttributeValue
based on the given DOM root node.root
- the DOM root of some attribute dataAttributeValue
representing the given dataException
- if the data couldn't be used (the exception is typically wrapping some
other exception)AttributeValue getInstance(String value, String[] params) throws Exception
AttributeValue
based on the given String data.value
- the text form of some attribute dataparams
- additional parameters that need to creates a valueAttributeValue
representing the given dataException
- if the data couldn't be used (the exception is typically wrapping some
other exception)Copyright © 2022 WSO2. All rights reserved.