org.pentaho.di.trans.steps.webservices.wsdl
Class WsdlOpReturnType

java.lang.Object
  extended by org.pentaho.di.trans.steps.webservices.wsdl.WsdlOpReturnType
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
WsdlOpFault, WsdlOpParameter

public class WsdlOpReturnType
extends Object
implements Serializable

Represents the return value for a WSDL operation.

See Also:
Serialized Form

Method Summary
 ComplexType getItemComplexType()
           
 QName getItemXmlType()
          If the return type is an array, get the xml type of the items in the array.
 QName getXmlType()
          Get the Xml type.
 boolean isArray()
          Is this an array type?
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getXmlType

public QName getXmlType()
Get the Xml type.

Returns:
QName for the XML type.

getItemXmlType

public QName getItemXmlType()
If the return type is an array, get the xml type of the items in the array.

Returns:
QName for the item XML type, null if not an array.

isArray

public boolean isArray()
Is this an array type?

Returns:
true if this is an array type.

getItemComplexType

public ComplexType getItemComplexType()