Update license to GPLv3, fix header comments
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / plugin / IdentityTrust.java
1 /*
2  * jFCPlib - IdentityTrust.java - Copyright © 2009–2016 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program 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 for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.fcp.plugin;
19
20 /**
21  * Container for the trust given from one identity to another.
22  *
23  * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
24  */
25 public class IdentityTrust {
26
27         /** The trust given to the identity. */
28         private final byte trust;
29
30         /** The command for the trust value. */
31         private final String comment;
32
33         /**
34          * Creates a new identity trust container.
35          *
36          * @param trust
37          *            The trust given to the identity
38          * @param comment
39          *            The comment for the trust value
40          */
41         public IdentityTrust(byte trust, String comment) {
42                 this.trust = trust;
43                 this.comment = comment;
44         }
45
46         /**
47          * Returns the trust value given to the identity.
48          *
49          * @return The trust value
50          */
51         public byte getTrust() {
52                 return trust;
53         }
54
55         /**
56          * Returns the comment for the trust value.
57          *
58          * @return The comment for the trust value
59          */
60         public String getComment() {
61                 return comment;
62         }
63
64 }