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

org.objectweb.fractal.bf.connectors.RemotableService Maven / Gradle / Ivy

There is a newer version: 0.9
Show 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 - 2024 Weber Informatics LLC | Privacy Policy