org.unitils.ftp.annotations.TestFtpServer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unitils-ftp Show documentation
Show all versions of unitils-ftp Show documentation
A fake FTP server where you can easily test if a file is correctly retrieved from the server.
The newest version!
package org.unitils.ftp.annotations;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
*
* @author Jeroen Horemans
* @author Thomas De Rycke
* @author Willemijn Wouters
*
* @since 1.0.0
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@SuppressWarnings("all")
public @interface TestFtpServer {
String baseFolder() default "";
}