Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Mention.java « comment « ocs « model « deck « nextcloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3ba9110fb7abcdf0b7caac9a6ba8caa31937043 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package it.niedermann.nextcloud.deck.model.ocs.comment;

import androidx.room.Entity;
import androidx.room.ForeignKey;
import androidx.room.Ignore;
import androidx.room.Index;
import androidx.room.PrimaryKey;

import java.util.Objects;

@Entity(inheritSuperIndices = true,
        indices = {
                @Index("commentId")
        },
        foreignKeys = {
                @ForeignKey(
                        entity = DeckComment.class,
                        parentColumns = "localId",
                        childColumns = "commentId", onDelete = ForeignKey.CASCADE
                )
        }
)
public class Mention {
    @PrimaryKey(autoGenerate = true)
    private Long id;
    private Long commentId;
    private String mentionId;
    private String mentionType;
    private String mentionDisplayName;

    public Mention() {
    }

    @Ignore
    public Mention(Long commentId, String mentionId, String mentionType, String mentionDisplayName) {
        this.commentId = commentId;
        this.mentionId = mentionId;
        this.mentionType = mentionType;
        this.mentionDisplayName = mentionDisplayName;
    }

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public Long getCommentId() {
        return commentId;
    }

    public void setCommentId(Long commentId) {
        this.commentId = commentId;
    }

    public String getMentionId() {
        return mentionId;
    }

    public void setMentionId(String mentionId) {
        this.mentionId = mentionId;
    }

    public String getMentionType() {
        return mentionType;
    }

    public void setMentionType(String mentionType) {
        this.mentionType = mentionType;
    }

    public String getMentionDisplayName() {
        return mentionDisplayName;
    }

    public void setMentionDisplayName(String mentionDisplayName) {
        this.mentionDisplayName = mentionDisplayName;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        Mention mention = (Mention) o;

        if (!Objects.equals(id, mention.id)) return false;
        if (!Objects.equals(commentId, mention.commentId))
            return false;
        if (!Objects.equals(mentionId, mention.mentionId))
            return false;
        if (!Objects.equals(mentionType, mention.mentionType))
            return false;
        return Objects.equals(mentionDisplayName, mention.mentionDisplayName);
    }

    @Override
    public int hashCode() {
        int result = id != null ? id.hashCode() : 0;
        result = 31 * result + (commentId != null ? commentId.hashCode() : 0);
        result = 31 * result + (mentionId != null ? mentionId.hashCode() : 0);
        result = 31 * result + (mentionType != null ? mentionType.hashCode() : 0);
        result = 31 * result + (mentionDisplayName != null ? mentionDisplayName.hashCode() : 0);
        return result;
    }
}