org.opencb.biodata.models.common.Status Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2015-2020 OpenCB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.opencb.biodata.models.common;
public class Status {
protected String id;
protected String description;
protected String date;
public Status() {
this("", "", "");
}
public Status(String id, String description, String date) {
this.id = id;
this.description = description;
this.date = date;
}
@Deprecated
public Status(String id, String name, String description, String date) {
this.id = id;
this.description = description;
this.date = date;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("Status{");
sb.append("id='").append(id).append('\'');
sb.append(", description='").append(description).append('\'');
sb.append(", date='").append(date).append('\'');
sb.append('}');
return sb.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Status)) return false;
Status status = (Status) o;
if (!id.equals(status.id)) return false;
if (description != null ? !description.equals(status.description) : status.description != null) return false;
return date != null ? date.equals(status.date) : status.date == null;
}
@Override
public int hashCode() {
int result = id.hashCode();
result = 31 * result + (description != null ? description.hashCode() : 0);
result = 31 * result + (date != null ? date.hashCode() : 0);
return result;
}
public String getId() {
return id;
}
public Status setId(String id) {
this.id = id;
return this;
}
@Deprecated
public String getName() {
return id;
}
@Deprecated
public Status setName(String name) {
return this;
}
public String getDescription() {
return description;
}
public Status setDescription(String description) {
this.description = description;
return this;
}
public String getDate() {
return date;
}
public Status setDate(String date) {
this.date = date;
return this;
}
}