
org.objectweb.fractal.bf.connectors.BasicClientImpl 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.util.logging.Logger;
import javax.xml.datatype.XMLGregorianCalendar;
import org.objectweb.fractal.api.NoSuchInterfaceException;
import org.objectweb.fractal.api.control.BindingController;
import org.objectweb.fractal.api.control.IllegalBindingException;
import org.objectweb.fractal.api.control.IllegalLifeCycleException;
public class BasicClientImpl implements BindingController, Service {
Logger log = Logger.getLogger(BasicClientImpl.class.getCanonicalName());
Service service;
/**
* @see org.objectweb.fractal.api.control.BindingController#bindFc(java.lang.String,
* java.lang.Object)
*/
public void bindFc(String arg0, Object arg1)
throws NoSuchInterfaceException, IllegalBindingException,
IllegalLifeCycleException {
if (arg0.equals("service")) {
this.service = (Service) arg1;
}
}
/**
* @see org.objectweb.fractal.api.control.BindingController#listFc()
*/
public String[] listFc() {
return new String[] { "service" };
}
/**
* @see org.objectweb.fractal.api.control.BindingController#lookupFc(java.lang.String)
*/
public Object lookupFc(String arg0) throws NoSuchInterfaceException {
if (arg0.equals("service")) {
return this.service;
}
return null;
}
/**
* @see org.objectweb.fractal.api.control.BindingController#unbindFc(java.lang.String)
*/
public void unbindFc(String arg0) throws NoSuchInterfaceException,
IllegalBindingException, IllegalLifeCycleException {
// TODO Auto-generated method stub
}
/**
* @see org.objectweb.fractal.bf.connectors.Service#print()
*/
public void print() {
log.info("Client invoking print() on service reference");
this.service.print();
}
/**
* @see org.objectweb.fractal.bf.connectors.Service#printAndAnswer()
*/
public String printAndAnswer() {
log.info("Client invoking printAndAnswer() on service reference");
return this.service.printAndAnswer();
}
/**
* @see org.objectweb.fractal.bf.connectors.Service#getCurrentDate()
*/
public XMLGregorianCalendar getCurrentDate() {
log.info("Client invoking getCurrentDate() on service reference()");
return this.service.getCurrentDate();
}
/**
* @see org.objectweb.fractal.bf.connectors.Service#getPojo()
*/
public Pojo getPojo() {
return this.service.getPojo();
}
/**
* @see org.objectweb.fractal.bf.connectors.Service#child(org.objectweb.fractal.bf.connectors.Pojo)
*/
public Pojo child(Pojo p) {
log.info("Client going to invoke parentOf on remote service");
return this.service.child(p);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy