Skip to content

Instantly share code, notes, and snippets.

@ggdio
Created September 18, 2013 17:06
Show Gist options
  • Save ggdio/6612249 to your computer and use it in GitHub Desktop.
Save ggdio/6612249 to your computer and use it in GitHub Desktop.
Service Interface
package br.com.gists.ws.service.structure;
import javax.jws.WebMethod;
import javax.jws.WebService;
/**
* Webservice structure definition
* @author Guilherme Dio
*/
@WebService
public interface MyService {
@WebMethod
public String helloWorld();
@WebMethod
public String showMessage(String msg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment