FastHub/app/src/main/java/com/fastaccess/data/dao/ProjectColumnModel.java
2017-09-16 19:59:42 +02:00

123 lines
3.1 KiB
Java

package com.fastaccess.data.dao;
import android.os.Parcel;
import android.os.Parcelable;
import java.util.Date;
/**
* Created by Hashemsergani on 11.09.17.
*/
public class ProjectColumnModel implements Parcelable {
private Long id;
private String name;
private String url;
private String projectUrl;
private String cardsUrl;
private Date createdAt;
private Date updatedAt;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getProjectUrl() {
return projectUrl;
}
public void setProjectUrl(String projectUrl) {
this.projectUrl = projectUrl;
}
public String getCardsUrl() {
return cardsUrl;
}
public void setCardsUrl(String cardsUrl) {
this.cardsUrl = cardsUrl;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public Date getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(Date updatedAt) {
this.updatedAt = updatedAt;
}
public ProjectColumnModel() {}
@Override public int describeContents() { return 0; }
@Override public void writeToParcel(Parcel dest, int flags) {
dest.writeValue(this.id);
dest.writeString(this.name);
dest.writeString(this.url);
dest.writeString(this.projectUrl);
dest.writeString(this.cardsUrl);
dest.writeLong(this.createdAt != null ? this.createdAt.getTime() : -1);
dest.writeLong(this.updatedAt != null ? this.updatedAt.getTime() : -1);
}
protected ProjectColumnModel(Parcel in) {
this.id = (Long) in.readValue(Long.class.getClassLoader());
this.name = in.readString();
this.url = in.readString();
this.projectUrl = in.readString();
this.cardsUrl = in.readString();
long tmpCreatedAt = in.readLong();
this.createdAt = tmpCreatedAt == -1 ? null : new Date(tmpCreatedAt);
long tmpUpdatedAt = in.readLong();
this.updatedAt = tmpUpdatedAt == -1 ? null : new Date(tmpUpdatedAt);
}
public static final Creator<ProjectColumnModel> CREATOR = new Creator<ProjectColumnModel>() {
@Override public ProjectColumnModel createFromParcel(Parcel source) {return new ProjectColumnModel(source);}
@Override public ProjectColumnModel[] newArray(int size) {return new ProjectColumnModel[size];}
};
@Override public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ProjectColumnModel that = (ProjectColumnModel) o;
return id != null ? id.equals(that.id) : that.id == null;
}
@Override public int hashCode() {
return id != null ? id.hashCode() : 0;
}
}