Uses of Class
org.xins.common.xml.Element

Packages that use Element
org.xins.client XINS client framework. 
org.xins.common Generic utility classes. 
org.xins.common.xml XML-related classes. 
org.xins.server XINS server framework. 
 

Uses of Element in org.xins.client
 

Methods in org.xins.client that return Element
 Element XINSCallResultData.getDataElement()
          Returns the optional extra data.
 Element UnacceptableResultXINSCallException.getDataElement()
          Returns the optional extra data.
 Element UnsuccessfulXINSCallException.getDataElement()
          Returns the optional extra data.
protected  Element AbstractCAPICallRequest.getDataElement()
          Gets the data section.
 Element XINSCallRequest.getDataSection()
          Retrieves the data section for the input.
 Element XINSCallResult.getDataElement()
          Returns the optional extra data.
 

Methods in org.xins.client with parameters of type Element
protected  void AbstractCAPICallRequest.putDataSection(Element dataSection)
          Sets the data section.
protected  void AbstractCAPICallRequest.add(Element element)
          Add a new Element to the data element.
 void XINSCallRequest.setDataSection(Element dataSection)
          Sets the data section for the input.
 

Constructors in org.xins.client with parameters of type Element
XINSCallRequest(String functionName, PropertyReader parameters, Element dataSection)
          Constructs a new XINSCallRequest for the specified function and parameters, disallowing fail-over unless the request was definitely not (yet) accepted by the service.
 

Uses of Element in org.xins.common
 

Methods in org.xins.common with parameters of type Element
static Object BeanUtils.xmlToObject(Element element, Object result, Map elementMapping, Map attributeMapping)
          Fills the result object with of the content of the XML element object.
static Object BeanUtils.xmlToObject(Element element, Object result)
          Fills the result object with of the content of the XML element object.
 

Constructors in org.xins.common with parameters of type Element
FormattedParameters(PropertyReader parameters, Element dataSection)
          Constructs a new FormattedParameters object.
FormattedParameters(PropertyReader parameters, Element dataSection, String valueIfEmpty, String prefixIfNotEmpty, int maxValueLength)
          Constructs a new FormattedParameters object.
 

Uses of Element in org.xins.common.xml
 

Methods in org.xins.common.xml that return Element
 Element ElementBuilder.createElement()
          Creates the Element.
 Element Element.getUniqueChildElement(String elementName)
          Gets the unique child of this element.
 Element ElementParser.parse(String text)
          Parses the specified String to create an XML Element object.
 Element ElementParser.parse(InputStream in)
          Parses content of a character stream to create an XML Element object.
 Element ElementParser.parse(Reader in)
          Parses content of a character stream to create an XML Element object.
 

Methods in org.xins.common.xml with parameters of type Element
 void ElementBuilder.addChild(Element child)
          Adds a new child element.
 String ElementSerializer.serialize(Element element)
          Serializes the element to XML.
 void ElementSerializer.output(XMLOutputter out, Element element)
          Generates XML for the specified Element.
 void Element.addChild(Element child)
          Adds a new child element.
 void Element.removeChild(Element child)
          Removes a child element.
 

Uses of Element in org.xins.server
 

Methods in org.xins.server that return Element
 Element FunctionRequest.getDataElement()
          Gets the data section of the request.
 Element CallContext.getDataElement()
          Returns the data section of the request, if any.
protected  Element SOAPCallingConvention.readDataSection(Element parametersElem, String functionName)
          Reads the input parameters.
protected  Element SOAPCallingConvention.soapElementTransformation(Map dataSection, boolean input, Element element, boolean top)
          Convert the values of element to the required format.
 Element FunctionResult.getDataElement()
          Gets the data element from this result.
protected  Element SOAPMapCallingConvention.readInputElem(Element inputElem, String functionName, String parent, Element parentElement, BasicPropertyReader inputParams)
          Parses the SOAP request element according to the rules specified in this class description.
protected  Element SOAPMapCallingConvention.writeResponse(HttpServletRequest httpRequest, FunctionResult xinsResult)
           
 

Methods in org.xins.server with parameters of type Element
protected  BasicPropertyReader SOAPCallingConvention.readInputParameters(Element parametersElem, String functionName)
          Reads the input parameters.
protected  Element SOAPCallingConvention.readDataSection(Element parametersElem, String functionName)
          Reads the input parameters.
protected  Element SOAPCallingConvention.soapElementTransformation(Map dataSection, boolean input, Element element, boolean top)
          Convert the values of element to the required format.
protected  void FunctionResult.add(Element element)
          Adds a new Element to the data element.
protected  FunctionRequest SOAPMapCallingConvention.readInput(Element functionElem, String functionName)
          Generates the function request based the the SOAP request.
protected  Element SOAPMapCallingConvention.readInputElem(Element inputElem, String functionName, String parent, Element parentElement, BasicPropertyReader inputParams)
          Parses the SOAP request element according to the rules specified in this class description.
protected  void SOAPMapCallingConvention.writeOutputParameters(String functionName, FunctionResult xinsResult, Element response)
          Writes the output parameters to the SOAP XML.
protected  void SOAPMapCallingConvention.writeOutputParameter(String parameterName, String parameterValue, Element parent)
          Write an output parameter to the SOAP response.
protected  void SOAPMapCallingConvention.writeOutputDataSection(String functionName, FunctionResult xinsResult, Element response)
          Writes the output data section to the SOAP XML.
protected  void SOAPMapCallingConvention.writeOutputDataElement(Map dataSectionSpec, Element dataElement, Element parent)
          Write the given output data element in the SOAP response.
 

Constructors in org.xins.server with parameters of type Element
FunctionRequest(String functionName, PropertyReader parameters, Element dataElement)
          Creates a new FunctionRequest.
FunctionRequest(String functionName, PropertyReader parameters, Element dataElement, boolean skipFunctionCall)
          Creates a new FunctionRequest.
 



See http://www.xins.org/.