Example usage for com.google.gwt.user.client.rpc RemoteService interface-usage

List of usage examples for com.google.gwt.user.client.rpc RemoteService interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client.rpc RemoteService interface-usage.

Usage

From source file accelerator.client.service.LoginService.java

@RemoteServiceRelativePath("service.s3gwt")
public interface LoginService extends RemoteService {
    LoginInfo login(String requestUrl);
}

From source file accelerator.client.service.LogService.java

@RemoteServiceRelativePath("service.s3gwt")
public interface LogService extends RemoteService {
    void writeLog(String message);
}

From source file accelerator.client.service.ProjectService.java

@RemoteServiceRelativePath("service.s3gwt")
public interface ProjectService extends RemoteService {
    /**
     * ????
     * 
     * @param key

From source file accelerator.client.service.TagService.java

@RemoteServiceRelativePath("service.s3gwt")
public interface TagService extends RemoteService {
    /**
     * ????
     * 
     * @param key

From source file accelerator.client.service.TaskService.java

@RemoteServiceRelativePath("service.s3gwt")
public interface TaskService extends RemoteService {
    /**
     * ????
     * 
     * @param key

From source file at.ait.dme.yuma.client.server.AuthenticationService.java

/**
 * interface to a prototypical authentication service.
 * 
 * background: the image annotation service should be capable of being integrated 
 * into portals. therefore, authentication and authorization should be handled by the 
 * corresponding portal. to pass user credentials to the image annotation service, which

From source file at.ait.dme.yuma.client.server.FindPlaceService.java

@RemoteServiceRelativePath("findplace")
public interface FindPlaceService extends RemoteService {

    /**
     * Find a place on the map by place name
     * @param europeanaUri

From source file at.ait.dme.yuma.client.server.GeocoderService.java

@RemoteServiceRelativePath("geocoder")
public interface GeocoderService extends RemoteService {

    WGS84Coordinate getCoordinate(String query) throws GeocoderException;

    String getPlacename(String europeanaUri, String mapUrl, XYCoordinate coordinate) throws GeocoderException;

From source file at.ait.dme.yuma.client.server.ImageAnnotationService.java

/**
 * interface of the image annotation service
 * 
 * @author Christian Sadilek
 */
@RemoteServiceRelativePath("imageannotation")

From source file at.ait.dme.yuma.client.server.ImageTilesetProviderService.java

/**
 * interface to the image tiles provider service
 *
 * @author Christian Sadilek
 */
@RemoteServiceRelativePath("tileset")