Mercurial > dive4elements > river
changeset 31:e8745ca02f2b
Removed the GreetingService - was added initially while repository creation.
flys-client/trunk@1434 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Wed, 09 Mar 2011 09:51:02 +0000 |
parents | 5709bd8f4d7c |
children | 88c530c25968 |
files | flys-client/ChangeLog flys-client/src/main/java/de/intevation/flys/client/client/GreetingService.java flys-client/src/main/java/de/intevation/flys/client/client/GreetingServiceAsync.java flys-client/src/test/java/de/intevation/flys/client/FLYSJUnit.gwt.xml |
diffstat | 4 files changed, 10 insertions(+), 23 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-client/ChangeLog Wed Mar 09 09:41:45 2011 +0000 +++ b/flys-client/ChangeLog Wed Mar 09 09:51:02 2011 +0000 @@ -1,3 +1,11 @@ +2011-03-09 Ingo Weinzierl <ingo@intevation.de> + + * src/test/java/de/intevation/flys/client/FLYSJUnit.gwt.xml, + src/main/java/de/intevation/flys/client/client/GreetingServiceAsync.java, + src/main/java/de/intevation/flys/client/client/GreetingService.java: + Removed the GreetingService from out application - this service has been + added initially by creating this repository. + 2011-03-09 Ingo Weinzierl <ingo@intevation.de> * src/main/java/de/intevation/flys/client/client/FLYSMessages_en.properties,
--- a/flys-client/src/main/java/de/intevation/flys/client/client/GreetingService.java Wed Mar 09 09:41:45 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,12 +0,0 @@ -package de.intevation.flys.client.client; - -import com.google.gwt.user.client.rpc.RemoteService; -import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; - -/** - * The client side stub for the RPC service. - */ -@RemoteServiceRelativePath("greet") -public interface GreetingService extends RemoteService { - String greetServer(String name) throws IllegalArgumentException; -}
--- a/flys-client/src/main/java/de/intevation/flys/client/client/GreetingServiceAsync.java Wed Mar 09 09:41:45 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -package de.intevation.flys.client.client; - -import com.google.gwt.user.client.rpc.AsyncCallback; - -/** - * The async counterpart of <code>GreetingService</code>. - */ -public interface GreetingServiceAsync { - void greetServer(String input, AsyncCallback<String> callback) - throws IllegalArgumentException; -}
--- a/flys-client/src/test/java/de/intevation/flys/client/FLYSJUnit.gwt.xml Wed Mar 09 09:41:45 2011 +0000 +++ b/flys-client/src/test/java/de/intevation/flys/client/FLYSJUnit.gwt.xml Wed Mar 09 09:51:02 2011 +0000 @@ -4,6 +4,8 @@ <inherits name='de.intevation.flys.client.FLYS'/> <!-- Specify the path to any remote services. --> + <!-- <servlet path="/flys/greet" class="de.intevation.flys.client.server.GreetingServiceImpl" /> + --> </module>