FairEmail/app/src/main/java/eu/faircode/email/EntityAccount.java

85 lines
2.7 KiB
Java
Raw Normal View History

2018-08-02 13:33:06 +00:00
package eu.faircode.email;
/*
2018-08-14 05:53:24 +00:00
This file is part of FairEmail.
2018-08-02 13:33:06 +00:00
2018-08-14 05:53:24 +00:00
FairEmail is free software: you can redistribute it and/or modify
2018-08-02 13:33:06 +00:00
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
NetGuard is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2018 by Marcel Bokhorst (M66B)
*/
2018-08-08 06:55:47 +00:00
import androidx.annotation.NonNull;
import androidx.room.Entity;
import androidx.room.PrimaryKey;
2018-08-02 13:33:06 +00:00
@Entity(
tableName = EntityAccount.TABLE_NAME,
indices = {
}
)
public class EntityAccount {
static final String TABLE_NAME = "account";
@PrimaryKey(autoGenerate = true)
public Long id;
public String name;
2018-09-07 08:44:48 +00:00
public String signature;
2018-08-02 13:33:06 +00:00
@NonNull
public String host; // IMAP
@NonNull
public Integer port;
@NonNull
public String user;
@NonNull
public String password;
@NonNull
2018-08-27 14:31:45 +00:00
public Integer auth_type;
@NonNull
2018-08-02 13:33:06 +00:00
public Boolean primary;
@NonNull
public Boolean synchronize;
2018-09-12 16:54:48 +00:00
public Integer color;
@NonNull
2018-08-25 14:24:26 +00:00
public Boolean store_sent; // obsolete
2018-08-23 09:48:27 +00:00
@NonNull
2018-09-01 06:01:02 +00:00
public Integer poll_interval; // NOOP interval
2018-08-07 18:31:14 +00:00
public Long seen_until;
2018-08-13 14:44:47 +00:00
public String state;
public String error;
2018-08-02 13:33:06 +00:00
@Override
public boolean equals(Object obj) {
if (obj instanceof EntityAccount) {
EntityAccount other = (EntityAccount) obj;
2018-08-04 19:54:33 +00:00
return ((this.name == null ? other.name == null : this.name.equals(other.name)) &&
2018-08-02 13:33:06 +00:00
this.host.equals(other.host) &&
this.port.equals(other.port) &&
this.user.equals(other.user) &&
this.password.equals(other.password) &&
this.primary.equals(other.primary) &&
this.synchronize.equals(other.synchronize) &&
2018-08-25 14:24:26 +00:00
this.poll_interval.equals(other.poll_interval) &&
2018-08-15 11:26:59 +00:00
(this.seen_until == null ? other.seen_until == null : this.seen_until.equals(other.seen_until)) &&
2018-08-13 14:44:47 +00:00
(this.state == null ? other.state == null : this.state.equals(other.state)) &&
(this.error == null ? other.error == null : this.error.equals(other.error)));
2018-08-02 13:33:06 +00:00
} else
return false;
}
2018-08-08 10:22:12 +00:00
@Override
public String toString() {
return name + (primary ? "" : "");
}
2018-08-02 13:33:06 +00:00
}