aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2014-10-10 21:18:50 +0200
committerVincent Breitmoser <valodim@mugenguild.com>2014-10-11 03:50:21 +0200
commite6a7960b8f3c838c66ef8cdaed5faf11a8d1ab26 (patch)
tree95cc2910ca9066cc1eb3ab91ea3bfed90e4c0569 /OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
parentfe981e54989c47ae252a4dfdc2aa41aab295cc7e (diff)
downloadopen-keychain-e6a7960b8f3c838c66ef8cdaed5faf11a8d1ab26.tar.gz
open-keychain-e6a7960b8f3c838c66ef8cdaed5faf11a8d1ab26.tar.bz2
open-keychain-e6a7960b8f3c838c66ef8cdaed5faf11a8d1ab26.zip
move delete into operation class
Diffstat (limited to 'OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java')
-rw-r--r--OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
index 45470ef20..dc47942fc 100644
--- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
+++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
@@ -593,7 +593,16 @@ public abstract class OperationResult implements Parcelable {
MSG_GET_QUERY_TOO_SHORT(LogLevel.ERROR, R.string.msg_download_query_too_short),
MSG_GET_TOO_MANY_RESPONSES(LogLevel.ERROR, R.string.msg_download_too_many_responses),
MSG_GET_QUERY_TOO_SHORT_OR_TOO_MANY_RESPONSES(LogLevel.ERROR, R.string.msg_download_query_too_short_or_too_many_responses),
- MSG_GET_QUERY_FAILED(LogLevel.ERROR, R.string.msg_download_query_failed)
+ MSG_GET_QUERY_FAILED(LogLevel.ERROR, R.string.msg_download_query_failed),
+
+ MSG_DEL_ERROR_EMPTY (LogLevel.ERROR, R.string.msg_del_error_empty),
+ MSG_DEL_ERROR_MULTI_SECRET (LogLevel.DEBUG, R.string.msg_del_error_multi_secret),
+ MSG_DEL (LogLevel.START, R.plurals.msg_del),
+ MSG_DEL_KEY (LogLevel.DEBUG, R.string.msg_del_key),
+ MSG_DEL_KEY_FAIL (LogLevel.WARN, R.string.msg_del_key_fail),
+ MSG_DEL_CONSOLIDATE (LogLevel.DEBUG, R.string.msg_del_consolidate),
+ MSG_DEL_OK (LogLevel.OK, R.plurals.msg_del_ok),
+ MSG_DEL_FAIL (LogLevel.WARN, R.plurals.msg_del_fail),
;
public final int mMsgId;