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.
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.
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/>.
18 package net.ktnx.mobileledger.db;
20 import androidx.annotation.NonNull;
21 import androidx.room.ColumnInfo;
22 import androidx.room.Entity;
24 import org.jetbrains.annotations.NotNull;
26 @Entity(tableName = "options", primaryKeys = {"profile_id", "name"})
28 public static final String OPT_LAST_SCRAPE = "last_scrape";
29 @ColumnInfo(name = "profile_id")
30 private long profileId;
36 public Option(long profileId, @NotNull String name, String value) {
37 this.profileId = profileId;
41 public long getProfileId() {
44 public void setProfileId(long profileId) {
45 this.profileId = profileId;
48 public String getName() {
51 public void setName(@NonNull String name) {
54 public String getValue() {
57 public void setValue(String value) {
62 public String toString() {