]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/db/Option.java
more pronounced day/month delimiters in the transaction list
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / db / Option.java
1 /*
2  * Copyright © 2021 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * MoLe is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.db;
19
20 import androidx.annotation.NonNull;
21 import androidx.room.ColumnInfo;
22 import androidx.room.Entity;
23
24 import org.jetbrains.annotations.NotNull;
25
26 @Entity(tableName = "options", primaryKeys = {"profile_id", "name"})
27 public class Option {
28     public static final String OPT_LAST_SCRAPE = "last_scrape";
29     @ColumnInfo(name = "profile_id")
30     private long profileId;
31     @NonNull
32     @ColumnInfo
33     private String name;
34     @ColumnInfo
35     private String value;
36     public Option(long profileId, @NotNull String name, String value) {
37         this.profileId = profileId;
38         this.name = name;
39         this.value = value;
40     }
41     public long getProfileId() {
42         return profileId;
43     }
44     public void setProfileId(long profileId) {
45         this.profileId = profileId;
46     }
47     @NonNull
48     public String getName() {
49         return name;
50     }
51     public void setName(@NonNull String name) {
52         this.name = name;
53     }
54     public String getValue() {
55         return value;
56     }
57     public void setValue(String value) {
58         this.value = value;
59     }
60     @NonNull
61     @Override
62     public String toString() {
63         return getName();
64     }
65 }