Skip to content

Instantly share code, notes, and snippets.

@modulo5
Created March 2, 2010 09:23
Show Gist options
  • Save modulo5/319377 to your computer and use it in GitHub Desktop.
Save modulo5/319377 to your computer and use it in GitHub Desktop.
package com.gavinminami.gwtdemo.client;
import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
@RemoteServiceRelativePath("greet")
public interface PingService extends RemoteService {
Integer ping(String hostUrl) throws IllegalArgumentException;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment