org.eclipse.ecf.remoteservice.rest
Interface IRestResponseProcessor


public interface IRestResponseProcessor

If a POJO is used as a REST service object than it has to implement this interface to get called if a response from the service was received. Otherwise the POJO gets no content.


Method Summary
 void processResource(java.lang.Object response)
          This method is called if the response from a rest service was received.
 

Method Detail

processResource

void processResource(java.lang.Object response)
This method is called if the response from a rest service was received.

Parameters:
response - the parsed resource representation.