File tree Expand file tree Collapse file tree 4 files changed +280
-25
lines changed
src/main/java/org/eclipse/hawkbit/ui/simple Expand file tree Collapse file tree 4 files changed +280
-25
lines changed Original file line number Diff line number Diff line change 65
65
<dependency >
66
66
<groupId >com.vaadin</groupId >
67
67
<artifactId >vaadin-core</artifactId >
68
- <exclusions >
69
- <exclusion >
70
- <groupId >com.vaadin</groupId >
71
- <artifactId >vaadin-dev</artifactId >
72
- </exclusion >
73
- </exclusions >
68
+ <!-- < exclusions> -- >
69
+ <!-- <exclusion> -- >
70
+ <!-- <groupId>com.vaadin</groupId> -- >
71
+ <!-- <artifactId>vaadin-dev</artifactId> -- >
72
+ <!-- </exclusion> -- >
73
+ <!-- < /exclusions> -- >
74
74
</dependency >
75
75
<dependency >
76
76
<groupId >com.vaadin</groupId >
Original file line number Diff line number Diff line change 13
13
14
14
import feign .FeignException ;
15
15
import lombok .Getter ;
16
+ import org .eclipse .hawkbit .mgmt .rest .api .MgmtActionRestApi ;
16
17
import org .eclipse .hawkbit .mgmt .rest .api .MgmtDistributionSetRestApi ;
17
18
import org .eclipse .hawkbit .mgmt .rest .api .MgmtDistributionSetTagRestApi ;
18
19
import org .eclipse .hawkbit .mgmt .rest .api .MgmtDistributionSetTypeRestApi ;
@@ -45,6 +46,7 @@ public class HawkbitMgmtClient {
45
46
private final MgmtTargetFilterQueryRestApi targetFilterQueryRestApi ;
46
47
private final MgmtRolloutRestApi rolloutRestApi ;
47
48
private final MgmtTenantManagementRestApi tenantManagementRestApi ;
49
+ private final MgmtActionRestApi actionRestApi ;
48
50
49
51
HawkbitMgmtClient (final Tenant tenant , final HawkbitClient hawkbitClient ) {
50
52
this .tenant = tenant ;
@@ -61,6 +63,7 @@ public class HawkbitMgmtClient {
61
63
targetFilterQueryRestApi = service (MgmtTargetFilterQueryRestApi .class );
62
64
rolloutRestApi = service (MgmtRolloutRestApi .class );
63
65
tenantManagementRestApi = service (MgmtTenantManagementRestApi .class );
66
+ actionRestApi = service (MgmtActionRestApi .class );
64
67
}
65
68
66
69
boolean hasSoftwareModulesRead () {
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Copyright (c) 2025 Contributors to the Eclipse Foundation
3
+ *
4
+ * This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which is available at
5
+ * https://www.eclipse.org/legal/epl-2.0/
6
+ *
7
+ * SPDX-License-Identifier: EPL-2.0
8
+ */
9
+ package org .eclipse .hawkbit .ui .simple .components ;
10
+
11
+ import com .vaadin .flow .component .icon .Icon ;
12
+ import com .vaadin .flow .component .icon .VaadinIcon ;
13
+
14
+ public class SpinnerIcon extends Icon {
15
+
16
+ public SpinnerIcon () {
17
+ super (VaadinIcon .SPINNER_THIRD );
18
+ getStyle ().set ("animation" , "v-spin 1s linear infinite" );
19
+ }
20
+ }
You can’t perform that action at this time.
0 commit comments