org.jaxws.stub2html.model.WebServiceStubSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wsdl2html Show documentation
Show all versions of wsdl2html Show documentation
A java tool to convert wsdl xml to readable doc
package org.jaxws.stub2html.model;
import java.util.ArrayList;
import java.util.List;
/**
* it correspond to a web service class
*
* @author chenjianjx
*
*/
public class WebServiceStubSet {
private Class> webServiceClass;
private List methodStubs = new ArrayList();
public List getMethodStubs() {
return methodStubs;
}
public void addMethodStub(WebMethodStubSet methodStub) {
methodStubs.add(methodStub);
}
public Class> getWebServiceClass() {
return webServiceClass;
}
public void setWebServiceClass(Class> webServiceClass) {
this.webServiceClass = webServiceClass;
}
}