com.cbse.jeasy
Interface JEConnector


public interface JEConnector

The interface JEConnector has to be implemented by a class to transfer data between the JEasy client and the application logic at the server or client.


Method Summary
 void receiveFromConnector(java.lang.String response)
          This method receives the response of the requet
 void sendToConnector(java.lang.String request)
          This method sends data from the client to the application logic
 

Method Detail

sendToConnector

void sendToConnector(java.lang.String request)
This method sends data from the client to the application logic

Parameters:
request - an xml STring with method and data

receiveFromConnector

void receiveFromConnector(java.lang.String response)
This method receives the response of the requet

Parameters:
request - an xml String with method and data