Skip to content

Commit e14732a

Browse files
trajanobsideup
andauthored
Add other event types (#1366)
* Add service event type * Added "node", "secret", "config" Co-authored-by: Sergei Egorov <segorov@pivotal.io>
1 parent 708f4f4 commit e14732a

File tree

1 file changed

+4
-0
lines changed
  • docker-java-api/src/main/java/com/github/dockerjava/api/model

1 file changed

+4
-0
lines changed

docker-java-api/src/main/java/com/github/dockerjava/api/model/EventType.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
* @since 1.24
1212
*/
1313
public enum EventType {
14+
CONFIG("config"),
1415
/**
1516
* @since 1.24
1617
*/
@@ -26,7 +27,10 @@ public enum EventType {
2627
*/
2728
IMAGE("image"),
2829
NETWORK("network"),
30+
NODE("node"),
2931
PLUGIN("plugin"),
32+
SECRET("secret"),
33+
SERVICE("service"),
3034
VOLUME("volume");
3135

3236
private static final Map<String, EventType> EVENT_TYPES = new HashMap<>();

0 commit comments

Comments
 (0)