website.automate.jenkins.model.AbstractSerializable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jenkins-automate-website-plugin Show documentation
Show all versions of jenkins-automate-website-plugin Show documentation
Integrates Jenkins CI with Automate Website Test Execution Environment.
The newest version!
package website.automate.jenkins.model;
import java.io.Serializable;
import java.util.Objects;
public abstract class AbstractSerializable implements Serializable {
private static final long serialVersionUID = 3611410129226004606L;
private String id;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
@Override
public int hashCode() {
return Objects.hash(id);
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
AbstractSerializable other = (AbstractSerializable) obj;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy