Created
September 18, 2013 17:06
-
-
Save ggdio/6612249 to your computer and use it in GitHub Desktop.
Service Interface
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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