
org.objectweb.fractal.bf.connectors.BasicRemotableServiceImpl 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.RemoteException;
import javax.xml.datatype.XMLGregorianCalendar;
/**
*
*/
public class BasicRemotableServiceImpl implements RemotableService {
private final BasicServiceImpl service;
public BasicRemotableServiceImpl() {
this.service = new BasicServiceImpl();
}
/**
* @see org.objectweb.fractal.bf.connectors.RemotableService#getCurrentDate()
*/
public XMLGregorianCalendar getCurrentDate() throws RemoteException {
return this.service.getCurrentDate();
}
/**
* @see org.objectweb.fractal.bf.connectors.RemotableService#getPojo()
*/
public Pojo getPojo() throws RemoteException {
return this.service.getPojo();
}
/**
* @see org.objectweb.fractal.bf.connectors.RemotableService#print()
*/
public void print() throws RemoteException {
this.service.print();
}
/**
* @see org.objectweb.fractal.bf.connectors.RemotableService#printAndAnswer()
*/
public String printAndAnswer() throws RemoteException {
return this.service.printAndAnswer();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy