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

ServiceEntry

public class ServiceEntry extends SymTabEntry
This class represents a WSDL service. It simply encompasses the WSDL4J Service object so it can reside in the SymbolTable.

Fields Summary
private javax.wsdl.Service
service
Field service
private String
originalServiceName
Constructors Summary
public ServiceEntry(javax.wsdl.Service service)
Construct a ServiceEntry from a WSDL4J Service object.

param
service


        super(service.getQName());

        this.service = service;
    
Methods Summary
public java.lang.StringgetOriginalServiceName()

param
originalServiceName

	return this.originalServiceName;
    
public javax.wsdl.ServicegetService()
Get this entry's Service object.

return

        return service;
    
public voidsetOriginalServiceName(java.lang.String originalName)

	this.originalServiceName = originalName;