summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/filetransfer/FileTransferOptions.java')
-rw-r--r--src/com/isode/stroke/filetransfer/FileTransferOptions.java15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/com/isode/stroke/filetransfer/FileTransferOptions.java b/src/com/isode/stroke/filetransfer/FileTransferOptions.java
index fd529e9..73fe1a1 100644
--- a/src/com/isode/stroke/filetransfer/FileTransferOptions.java
+++ b/src/com/isode/stroke/filetransfer/FileTransferOptions.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2013-2015 Isode Limited.
+ * Copyright (c) 2013-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
@@ -12,7 +12,7 @@
package com.isode.stroke.filetransfer;
public class FileTransferOptions {
-
+
private boolean allowInBand_;
private boolean allowAssisted_;
private boolean allowProxied_;
@@ -25,6 +25,17 @@ public class FileTransferOptions {
allowDirect_ = true;
}
+ /**
+ * Copy constructor
+ * @param other {@link FileTransferOptions} to copy
+ */
+ public FileTransferOptions(FileTransferOptions other) {
+ this.allowInBand_ = other.allowInBand_;
+ this.allowAssisted_ = other.allowAssisted_;
+ this.allowProxied_ = other.allowProxied_;
+ this.allowDirect_ = other.allowDirect_;
+ }
+
public FileTransferOptions withInBandAllowed(boolean b) {
allowInBand_ = b;
return this;