PortTypeEntrypublic class PortTypeEntry extends SymTabEntry This class represents a WSDL portType. It encompasses the WSDL4J PortType object so it can
reside in the SymbolTable. It also adds the parameter information, which is missing from the
WSDL4J PortType object. |
Fields Summary |
---|
private javax.wsdl.PortType | portTypeField portType |
Constructors Summary |
---|
public PortTypeEntry(javax.wsdl.PortType portType)Construct a PortTypeEntry from a WSDL4J PortType object and a HashMap of Parameters objects,
keyed off of the operation name.
super(portType.getQName());
this.portType = portType;
|
Methods Summary |
---|
public javax.wsdl.PortType | getPortType()Get this entry's PortType object.
return portType;
|
|