Skip to content

Instantly share code, notes, and snippets.

@carlosdlf
Created April 16, 2016 01:55
Show Gist options
  • Save carlosdlf/df7f08e048e18d62cdb533329222228e to your computer and use it in GitHub Desktop.
Save carlosdlf/df7f08e048e18d62cdb533329222228e to your computer and use it in GitHub Desktop.
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