Move WOT-related container classes to top-level classes.
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / plugin / IdentityTrust.java
1 /*
2  * jFCPlib - IdentityTrust.java - Copyright © 2009–2014 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 2 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, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */
18
19 package net.pterodactylus.fcp.plugin;
20
21 /**
22  * Container for the trust given from one identity to another.
23  *
24  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
25  */
26 public class IdentityTrust {
27
28         /** The trust given to the identity. */
29         private final byte trust;
30
31         /** The command for the trust value. */
32         private final String comment;
33
34         /**
35          * Creates a new identity trust container.
36          *
37          * @param trust
38          *            The trust given to the identity
39          * @param comment
40          *            The comment for the trust value
41          */
42         public IdentityTrust(byte trust, String comment) {
43                 this.trust = trust;
44                 this.comment = comment;
45         }
46
47         /**
48          * Returns the trust value given to the identity.
49          *
50          * @return The trust value
51          */
52         public byte getTrust() {
53                 return trust;
54         }
55
56         /**
57          * Returns the comment for the trust value.
58          *
59          * @return The comment for the trust value
60          */
61         public String getComment() {
62                 return comment;
63         }
64
65 }