All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jaxws.stub2html.model.WebServiceStubSet Maven / Gradle / Ivy

There is a newer version: 4.2.2
Show newest version
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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy