|
@@ -26,7 +26,7 @@ import java.util.Map;
|
|
|
|
|
|
public class NextcloudRequest implements Serializable {
|
|
|
|
|
|
- private static final long serialVersionUID = 215521212534238L; //assign a long value
|
|
|
+ private static final long serialVersionUID = 215521212534239L; //assign a long value
|
|
|
|
|
|
private String method;
|
|
|
private Map<String, List<String>> header = new HashMap<>();
|
|
@@ -36,7 +36,7 @@ public class NextcloudRequest implements Serializable {
|
|
|
private String token;
|
|
|
private String packageName;
|
|
|
private String accountName;
|
|
|
- private boolean followRedirects = false;
|
|
|
+ private boolean followRedirects;
|
|
|
|
|
|
private NextcloudRequest() { }
|
|
|
|
|
@@ -92,7 +92,7 @@ public class NextcloudRequest implements Serializable {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * Default: true
|
|
|
+ * Default value: true
|
|
|
* @param followRedirects
|
|
|
* @return
|
|
|
*/
|
|
@@ -146,7 +146,7 @@ public class NextcloudRequest implements Serializable {
|
|
|
this.accountName = accountName;
|
|
|
}
|
|
|
|
|
|
- public boolean getFollowRedirects() {
|
|
|
+ public boolean isFollowRedirects() {
|
|
|
return this.followRedirects;
|
|
|
}
|
|
|
|