org.distributeme.agents.transporter.TransporterServiceFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of distributeme-agents Show documentation
Show all versions of distributeme-agents Show documentation
Support for mobile agents in DistributeMe.
package org.distributeme.agents.transporter;
import net.anotheria.anoprise.metafactory.ServiceFactory;
public class TransporterServiceFactory implements ServiceFactory{
@Override
public TransporterService create() {
return new TransporterServiceImpl();
}
}