FileDocCategorySizeDatePackage
PortTypeEntry.javaAPI DocApache Axis 1.41549Sat Apr 22 18:57:26 BST 2006org.apache.axis.wsdl.symbolTable

PortTypeEntry

public 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
portType
Field 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.

param
portType


        super(portType.getQName());

        this.portType = portType;
    
Methods Summary
public javax.wsdl.PortTypegetPortType()
Get this entry's PortType object.

return

        return portType;