jadex.platform.service.filetransfer.FileTransferAgent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-platform Show documentation
Show all versions of jadex-platform Show documentation
The Jadex platform package contains implementations of platform services as well as the platform component itself.
package jadex.platform.service.filetransfer;
import jadex.bridge.nonfunctional.annotation.NameValue;
import jadex.bridge.service.types.filetransfer.IFileTransferService;
import jadex.micro.annotation.Agent;
import jadex.micro.annotation.Implementation;
import jadex.micro.annotation.Properties;
import jadex.micro.annotation.ProvidedService;
import jadex.micro.annotation.ProvidedServices;
/**
* Agent that provides the file transfer service.
*/
@Agent
@ProvidedServices(@ProvidedService(type=IFileTransferService.class, implementation=@Implementation(FileTransferService.class)))
@Properties(value=@NameValue(name="system", value="true"))
public class FileTransferAgent
{
}