Added default values to FTP behaviour
This commit is contained in:
parent
2efed01291
commit
031250e437
1 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue