
de.mhus.test.ws.ws_model.WSService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ws-model Show documentation
Show all versions of ws-model Show documentation
ws-model OSGi blueprint bundle project.
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