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

de.mhus.test.ws.ws_model.WSService Maven / Gradle / Ivy

The newest version!
package de.mhus.test.ws.ws_model;

import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.Style;

@WebService
@SOAPBinding(style = Style.RPC)
public interface WSService {

	@WebMethod
	void addEntity(WSEntity entity);
	
	@WebMethod
	WSEntity[] getAll();
	
	@WebMethod
	void removeEntity(WSEntity entity);
	
	@WebMethod
	WSEntity get(String name);
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy