diff options
Diffstat (limited to 'common/domain/applicationdomaintype.h')
-rw-r--r-- | common/domain/applicationdomaintype.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/domain/applicationdomaintype.h b/common/domain/applicationdomaintype.h index 1250455..518f6d5 100644 --- a/common/domain/applicationdomaintype.h +++ b/common/domain/applicationdomaintype.h | |||
@@ -118,12 +118,14 @@ enum SINK_EXPORT SyncStatus { | |||
118 | * The status of an account or resource. | 118 | * The status of an account or resource. |
119 | * | 119 | * |
120 | * It is set as follows: | 120 | * It is set as follows: |
121 | * * By default the status is offline. | 121 | * * By default the status is no status. |
122 | * * If a connection to the server failed the status is Offline. | ||
122 | * * If a connection to the server could be established the status is Connected. | 123 | * * If a connection to the server could be established the status is Connected. |
123 | * * If an error occurred that keeps the resource from operating (so non transient), the resource enters the error state. | 124 | * * If an error occurred that keeps the resource from operating (so non transient), the resource enters the error state. |
124 | * * If a long running operation is started the resource goes to the busy state (and return to the previous state after that). | 125 | * * If a long running operation is started the resource goes to the busy state (and return to the previous state after that). |
125 | */ | 126 | */ |
126 | enum SINK_EXPORT Status { | 127 | enum SINK_EXPORT Status { |
128 | NoStatus, | ||
127 | OfflineStatus, | 129 | OfflineStatus, |
128 | ConnectedStatus, | 130 | ConnectedStatus, |
129 | BusyStatus, | 131 | BusyStatus, |