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

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

Introduction

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

Usage

From source file net.webpasswordsafe.client.remote.LoginService.java

/**
 * 
 * @author Josh Drummond
 *
 */
public interface LoginService extends XsrfProtectedService {

From source file net.webpasswordsafe.client.remote.PasswordService.java

/**
 * 
 * @author Josh Drummond
 *
 */
public interface PasswordService extends XsrfProtectedService {

From source file net.webpasswordsafe.client.remote.UserService.java

/**
 * 
 * @author Josh Drummond
 *
 */
public interface UserService extends XsrfProtectedService {

From source file org.openelis.modules.attachment.client.AttachmentServiceInt.java

/**
 * ScreenServiceInt is a GWT RemoteService interface for the Screen Widget. GWT
 * RemoteServiceServlets that want to provide server side logic for Screens must
 * implement this interface.
 */
@RemoteServiceRelativePath("attachment")

From source file org.openelis.modules.order1.client.OrderServiceInt1.java

/**
 * ScreenServiceInt is a GWT RemoteService interface for the Screen Widget. GWT
 * RemoteServiceServlets that want to provide server side logic for Screens must
 * implement this interface.
 */
@RemoteServiceRelativePath("order1")

From source file org.openelis.modules.patient.client.PatientServiceInt.java

@RemoteServiceRelativePath("patient")
public interface PatientServiceInt extends XsrfProtectedService {
    public ArrayList<PatientRelationVO> fetchByRelatedPatientId(Integer patientId) throws Exception;

    public PatientDO fetchForUpdate(Integer patientId) throws Exception;

From source file org.openelis.modules.report.secondaryLabel.client.SecondaryLabelReportServiceInt.java

/**
 * ScreenServiceInt is a GWT RemoteService interface for the Screen Widget. GWT
 * RemoteServiceServlets that want to provide server side logic for Screens must
 * implement this interface.
 */
@RemoteServiceRelativePath("secondaryLabel")

From source file org.openelis.modules.sample1.client.SampleServiceInt1.java

/**
 * ScreenServiceInt is a GWT RemoteService interface for the Screen Widget. GWT
 * RemoteServiceServlets that want to provide server side logic for Screens must
 * implement this interface.
 */
@RemoteServiceRelativePath("sample1")

From source file org.openelis.modules.secondDataEntry.client.SecondDataEntryService.java

@Service
@RemoteServiceRelativePath("secondDataEntry")
public interface SecondDataEntryService extends XsrfProtectedService {
    public ArrayList<SecondDataEntryVO> query(Query query) throws Exception;
}

From source file org.openelis.modules.worksheet1.client.WorksheetServiceInt1.java

@RemoteServiceRelativePath("worksheet1")
public interface WorksheetServiceInt1 extends XsrfProtectedService {
    public WorksheetManager1 getInstance() throws Exception;

    public WorksheetManager1 fetchById(Integer worksheetId, WorksheetManager1.Load... elements) throws Exception;