Created
April 16, 2016 01:55
-
-
Save carlosdlf/df7f08e048e18d62cdb533329222228e to your computer and use it in GitHub Desktop.
This file contains hidden or 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 edu.cibertec.jadd.jaxws; | |
import javax.jws.WebMethod; | |
import javax.jws.WebService; | |
/** | |
* Created by Java-VS on 15/04/2016. | |
*/ | |
@WebService | |
public interface TimeService { | |
@WebMethod | |
String getTimeAsString(); | |
@WebMethod | |
Long getTimeAsElapsed(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment