mirror of
https://github.com/owncloud/android-library.git
synced 2025-07-25 18:57:33 +00:00
commit
ef49035784
@ -118,7 +118,7 @@ public class RemoteOperationResult implements Serializable {
|
|||||||
INVALID_CHARACTER_DETECT_IN_SERVER,
|
INVALID_CHARACTER_DETECT_IN_SERVER,
|
||||||
DELAYED_FOR_WIFI,
|
DELAYED_FOR_WIFI,
|
||||||
LOCAL_FILE_NOT_FOUND,
|
LOCAL_FILE_NOT_FOUND,
|
||||||
MAINTENANCE_MODE,
|
SERVICE_UNAVAILABLE,
|
||||||
SPECIFIC_SERVICE_UNAVAILABLE
|
SPECIFIC_SERVICE_UNAVAILABLE
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -325,7 +325,7 @@ public class RemoteOperationResult implements Serializable {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Private constructor for results built interpreting a HTTP or DAV response.
|
* Private constructor for results built interpreting a HTTP or DAV response.
|
||||||
* <p>
|
*
|
||||||
* Determines a {@link ResultCode} depending of the type of the exception.
|
* Determines a {@link ResultCode} depending of the type of the exception.
|
||||||
*
|
*
|
||||||
* @param success Operation was successful or not.
|
* @param success Operation was successful or not.
|
||||||
@ -358,7 +358,7 @@ public class RemoteOperationResult implements Serializable {
|
|||||||
mCode = ResultCode.INSTANCE_NOT_CONFIGURED; // assuming too much...
|
mCode = ResultCode.INSTANCE_NOT_CONFIGURED; // assuming too much...
|
||||||
break;
|
break;
|
||||||
case HttpStatus.SC_SERVICE_UNAVAILABLE: // 503
|
case HttpStatus.SC_SERVICE_UNAVAILABLE: // 503
|
||||||
mCode = ResultCode.MAINTENANCE_MODE;
|
mCode = ResultCode.SERVICE_UNAVAILABLE;
|
||||||
break;
|
break;
|
||||||
case HttpStatus.SC_INSUFFICIENT_STORAGE: // 507
|
case HttpStatus.SC_INSUFFICIENT_STORAGE: // 507
|
||||||
mCode = ResultCode.QUOTA_EXCEEDED; // surprise!
|
mCode = ResultCode.QUOTA_EXCEEDED; // surprise!
|
||||||
|
Loading…
x
Reference in New Issue
Block a user