Added default values to FTP behaviour

This commit is contained in:
Ziver Koc 2014-08-07 12:58:12 +02:00
parent 2efed01291
commit 031250e437

View file

@ -19,13 +19,13 @@ public class UeBehaviourFtpDownload extends UeBehaviourFileDownload {
private static final Logger log = Logger.getLogger(UeBehaviourFtpDownload.class);
@Configurable("Host")
private String host;
private String host = "ftp.otenet.gr";
@Configurable("File Path")
private String filePath;
private String filePath = "/test1Mb.db";
@Configurable("Username")
private String username;
private String username = "speedtest";
@Configurable("Password")
private String password;
private String password = "speedtest";
@Override