
org.objectweb.fractal.bf.connectors.RemotableService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fixtures Show documentation
Show all versions of fixtures Show documentation
Integration tests fixtures
The newest version!
/**
* Author: Valerio Schiavoni
*/
package org.objectweb.fractal.bf.connectors;
import java.rmi.Remote;
import java.rmi.RemoteException;
/**
* This mimics the simpler {@link Service} interface, but it extends it with
* declared {@link RemoteException} on each method and by extending the
* {@link Remote} java.rmi interface.
*
*/
public interface RemotableService extends Remote {
void print() throws RemoteException;
String printAndAnswer() throws RemoteException;;
javax.xml.datatype.XMLGregorianCalendar getCurrentDate()
throws RemoteException;
Pojo getPojo() throws RemoteException;;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy