Class AutoValue_Event
- java.lang.Object
-
- com.spotify.docker.client.messages.Event
-
- com.spotify.docker.client.messages.AutoValue_Event
-
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_Event extends Event
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.spotify.docker.client.messages.Event
Event.Actor, Event.Type
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
action
private Event.Actor
actor
private java.lang.String
from
private java.lang.String
id
private java.lang.String
status
private java.util.Date
time
private java.lang.Long
timeNano
private Event.Type
type
-
Constructor Summary
Constructors Constructor Description AutoValue_Event(java.lang.String status, java.lang.String id, java.lang.String from, Event.Type type, java.lang.String action, Event.Actor actor, java.util.Date time, java.lang.Long timeNano)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.String
action()
Event action.Event.Actor
actor()
Event actor.boolean
equals(java.lang.Object o)
java.lang.String
from()
Deprecated.int
hashCode()
java.lang.String
id()
Deprecated.java.lang.String
status()
Deprecated.java.util.Date
time()
java.lang.Long
timeNano()
java.lang.String
toString()
Event.Type
type()
-
-
-
Field Detail
-
status
private final java.lang.String status
-
id
private final java.lang.String id
-
from
private final java.lang.String from
-
type
private final Event.Type type
-
action
private final java.lang.String action
-
actor
private final Event.Actor actor
-
time
private final java.util.Date time
-
timeNano
private final java.lang.Long timeNano
-
-
Constructor Detail
-
AutoValue_Event
AutoValue_Event(@Nullable java.lang.String status, @Nullable java.lang.String id, @Nullable java.lang.String from, @Nullable Event.Type type, @Nullable java.lang.String action, @Nullable Event.Actor actor, java.util.Date time, @Nullable java.lang.Long timeNano)
-
-
Method Detail
-
status
@Deprecated @Nullable public java.lang.String status()
Deprecated.Description copied from class:Event
Event status.
-
id
@Deprecated @Nullable public java.lang.String id()
Deprecated.Description copied from class:Event
Event actor id. When the event type is "container" this is the container id.
-
from
@Deprecated @Nullable public java.lang.String from()
Deprecated.Description copied from class:Event
When the event type is "container" this is the image id.
-
type
@Nullable public Event.Type type()
-
action
@Nullable public java.lang.String action()
Description copied from class:Event
Event action.
-
actor
@Nullable public Event.Actor actor()
Description copied from class:Event
Event actor.- Specified by:
actor
in classEvent
- Returns:
Event.Actor
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-