Package org.apache.axis.wsdl.symbolTable
Class Parameter
- java.lang.Object
-
- org.apache.axis.wsdl.symbolTable.Parameter
-
public class Parameter extends java.lang.ObjectThis class simply collects
-
-
Constructor Summary
Constructors Constructor Description Parameter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MimeInfogetMIMEInfo()Get the MIME type of the parameter.bytegetMode()Get the mode (IN, INOUT, OUT) of the parameter.java.lang.StringgetName()Get the name of this parameter.QNamegetQName()Get the fully qualified name of this parameter.TypeEntrygetType()Get the TypeEntry of the parameter.booleanisInHeader()Is this parameter in the input message header?booleanisNillable()Indicates whether this parameter is nillable or not.booleanisOmittable()booleanisOutHeader()Is this parameter in the output message header?voidsetInHeader(boolean inHeader)Set the inHeader flag for this parameter.voidsetMIMEInfo(MimeInfo mimeInfo)Set the MIME type of the parameter.voidsetMode(byte mode)Set the mode (IN, INOUT, OUT) of the parameter.voidsetName(java.lang.String name)Set the name of the parameter.voidsetNillable(boolean nillable)Indicate whether this parameter is nillable or not.voidsetOmittable(boolean omittable)voidsetOutHeader(boolean outHeader)Set the outHeader flag for this parameter.voidsetQName(QName qname)Set the QName of the parameter.voidsetType(TypeEntry type)Set the TypeEntry of the parameter.java.lang.StringtoString()Method toString
-
-
-
Field Detail
-
IN
public static final byte IN
Field IN- See Also:
- Constant Field Values
-
OUT
public static final byte OUT
Field OUT- See Also:
- Constant Field Values
-
INOUT
public static final byte INOUT
Field INOUT- See Also:
- Constant Field Values
-
-
Method Detail
-
toString
public java.lang.String toString()
Method toString- Overrides:
toStringin classjava.lang.Object- Returns:
-
getQName
public QName getQName()
Get the fully qualified name of this parameter.- Returns:
-
getName
public java.lang.String getName()
Get the name of this parameter. This call is equivalent to getQName().getLocalPart().- Returns:
-
setName
public void setName(java.lang.String name)
Set the name of the parameter. This replaces both the name and the QName (the namespaces becomes "").- Parameters:
name-
-
setQName
public void setQName(QName qname)
Set the QName of the parameter.- Parameters:
qname-
-
getMIMEInfo
public MimeInfo getMIMEInfo()
Get the MIME type of the parameter.- Returns:
-
setMIMEInfo
public void setMIMEInfo(MimeInfo mimeInfo)
Set the MIME type of the parameter.- Parameters:
mimeInfo-
-
getType
public TypeEntry getType()
Get the TypeEntry of the parameter.- Returns:
-
setType
public void setType(TypeEntry type)
Set the TypeEntry of the parameter.- Parameters:
type-
-
getMode
public byte getMode()
Get the mode (IN, INOUT, OUT) of the parameter.- Returns:
-
setMode
public void setMode(byte mode)
Set the mode (IN, INOUT, OUT) of the parameter. If the input to this method is not one of IN, INOUT, OUT, then the value remains unchanged.- Parameters:
mode-
-
isInHeader
public boolean isInHeader()
Is this parameter in the input message header?- Returns:
-
setInHeader
public void setInHeader(boolean inHeader)
Set the inHeader flag for this parameter.- Parameters:
inHeader-
-
isOutHeader
public boolean isOutHeader()
Is this parameter in the output message header?- Returns:
-
setOutHeader
public void setOutHeader(boolean outHeader)
Set the outHeader flag for this parameter.- Parameters:
outHeader-
-
isOmittable
public boolean isOmittable()
-
setOmittable
public void setOmittable(boolean omittable)
-
isNillable
public boolean isNillable()
Indicates whether this parameter is nillable or not.- Returns:
- whether this parameter is nilliable
-
setNillable
public void setNillable(boolean nillable)
Indicate whether this parameter is nillable or not.- Parameters:
nillable- whether this parameter is nilliable
-
-