X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/54679a521d5126d586969c234e6f1536f27dae81..a6a56bae2acae4f69c421fa5b8166a3cd5ebaf9f:/src/com/owncloud/android/operations/RemoteOperationResult.java diff --git a/src/com/owncloud/android/operations/RemoteOperationResult.java b/src/com/owncloud/android/operations/RemoteOperationResult.java index cc2ee67f..1679bf72 100644 --- a/src/com/owncloud/android/operations/RemoteOperationResult.java +++ b/src/com/owncloud/android/operations/RemoteOperationResult.java @@ -24,7 +24,6 @@ import java.net.MalformedURLException; import java.net.SocketException; import java.net.SocketTimeoutException; import java.net.UnknownHostException; -import java.util.Map; import javax.net.ssl.SSLException; @@ -86,7 +85,8 @@ public class RemoteOperationResult implements Serializable { OAUTH2_ERROR_ACCESS_DENIED, QUOTA_EXCEEDED, ACCOUNT_NOT_FOUND, - ACCOUNT_EXCEPTION + ACCOUNT_EXCEPTION, + ACCOUNT_NOT_NEW } private boolean mSuccess = false; @@ -298,6 +298,9 @@ public class RemoteOperationResult implements Serializable { } else if (mCode == ResultCode.LOCAL_STORAGE_NOT_MOVED) { return "Error while moving file to final directory"; + + } else if (mCode == ResultCode.ACCOUNT_NOT_NEW) { + return "Account already existing when creating a new one"; } return "Operation finished with HTTP status code " + mHttpCode + " (" + (isSuccess() ? "success" : "fail") + ")"; @@ -319,5 +322,11 @@ public class RemoteOperationResult implements Serializable { public String getRedirectedLocation() { return mRedirectedLocation; } + + public boolean isIdPRedirection() { + return (mRedirectedLocation != null && + (mRedirectedLocation.toUpperCase().contains("SAML") || + mRedirectedLocation.toLowerCase().contains("wayf"))); + } }