com.github.dockerjava.api.model.EventActor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.github.dockerjava.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
import javax.annotation.CheckForNull;
import java.io.Serializable;
import java.util.Map;
/**
* @author Kanstantsin Shautsou
* @since 1.22
*/
public class EventActor implements Serializable {
private static final long serialVersionUID = 1L;
/**
* @since 1.22
*/
@JsonProperty("ID")
private String id;
/**
* @since 1.22
*/
@JsonProperty("Attributes")
private Map attributes;
/**
* @see #id
*/
@CheckForNull
public String getId() {
return id;
}
/**
* @see #id
*/
public EventActor withId(String id) {
this.id = id;
return this;
}
/**
* @see #attributes
*/
@CheckForNull
public Map getAttributes() {
return attributes;
}
/**
* @see #attributes
*/
public EventActor withAttributes(Map attributes) {
this.attributes = attributes;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
@Override
public boolean equals(Object o) {
return EqualsBuilder.reflectionEquals(this, o);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy