org.objectweb.fractal.bf.connectors.Service Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fractal-bf-testing-fixtures
Show all versions of fractal-bf-testing-fixtures
Integration tests fixtures
The newest version!
package org.objectweb.fractal.bf.connectors;
import java.util.Properties;
public interface Service {
void print();
String printAndAnswer();
javax.xml.datatype.XMLGregorianCalendar getCurrentDate();
Pojo getPojo();
Pojo child(Pojo p);
byte[] elaborateBytes(Properties p, byte[] raw);
void badMethod() throws HelloWorldException;
}