All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anotheria.asg.service.remote.RemoteService Maven / Gradle / Ivy

package net.anotheria.asg.service.remote;

import java.rmi.Remote;
import java.rmi.RemoteException;

/**
 * 

RemoteService interface.

* * @author another * @version $Id: $Id */ public interface RemoteService extends Remote{ /** * Converts echo request to echo response and return it. Is useful for for checking remote object availability * * @return converted EchoRequest to EchoResponse * @param echoRequest a {@link net.anotheria.asg.service.remote.EchoRequest} object. * @throws java.rmi.RemoteException if any. */ EchoResponse getEcho(EchoRequest echoRequest) throws RemoteException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy