You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* that were sent to server earlier by the controller using {@link DdiActionFeedback}.
32
31
*/
33
-
@EqualsAndHashCode
34
-
@ToString
32
+
@Data
35
33
@JsonIgnoreProperties(ignoreUnknown = true)
36
34
@JsonPropertyOrder({ "status", "messages" })
37
35
publicclassDdiActionHistory {
38
36
39
-
@JsonProperty("status")
40
37
@Schema(description = "Status of the deployment based on previous feedback by the device", example = "RUNNING")
41
-
privatefinalStringactionStatus;
38
+
privatefinalStringstatus;
42
39
43
-
@JsonProperty("messages")
44
40
@Schema(description = "Messages are previously sent to the feedback channel in LIFO order by the device. Note: The first status message is set by the system and describes the trigger of the deployment")
45
41
privatefinalList<String> messages;
46
42
47
43
/**
48
44
* Parameterized constructor for creating {@link DdiActionHistory}.
49
45
*
50
-
* @param actionStatus is the current action status at the server
46
+
* @param status is the current action status at the server
51
47
* @param messages is a list of messages retrieved from action history.
Copy file name to clipboardexpand all lines: hawkbit-ddi/hawkbit-ddi-api/src/main/java/org/eclipse/hawkbit/ddi/json/model/DdiActivateAutoConfirmation.java
-2
Original file line number
Diff line number
Diff line change
@@ -19,12 +19,10 @@
19
19
@JsonIgnoreProperties(ignoreUnknown = true)
20
20
publicclassDdiActivateAutoConfirmation {
21
21
22
-
@JsonProperty
23
22
@Schema(description = "Individual value (e.g. username) stored as initiator and automatically used as confirmed" +
24
23
" user in future actions", example = "exampleUser")
25
24
privatefinalStringinitiator;
26
25
27
-
@JsonProperty
28
26
@Schema(description = "Individual value to attach a remark which will be persisted when automatically " +
29
27
"confirming future actions", example = "exampleRemark")
Copy file name to clipboardexpand all lines: hawkbit-ddi/hawkbit-ddi-api/src/main/java/org/eclipse/hawkbit/ddi/json/model/DdiAutoConfirmationState.java
0 commit comments