Move WOT-related container classes to top-level classes.
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / plugin / Identity.java
1 /*
2  * jFCPlib - Identity.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  * Wrapper around a web-of-trust identity.
23  *
24  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
25  */
26 public class Identity {
27
28         /** The identity’s identifier. */
29         private final String identifier;
30
31         /** The identity’s nickname. */
32         private final String nickname;
33
34         /** The identity’s request URI. */
35         private final String requestUri;
36
37         /**
38          * Creates a new identity.
39          *
40          * @param identifier
41          *            The identifies of the identity
42          * @param nickname
43          *            The nickname of the identity
44          * @param requestUri
45          *            The request URI of the identity
46          */
47         public Identity(String identifier, String nickname, String requestUri) {
48                 this.identifier = identifier;
49                 this.nickname = nickname;
50                 this.requestUri = requestUri;
51         }
52
53         /**
54          * Returns the identifier of this identity.
55          *
56          * @return This identity’s identifier
57          */
58         public String getIdentifier() {
59                 return identifier;
60         }
61
62         /**
63          * Returns the nickname of this identity.
64          *
65          * @return This identity’s nickname
66          */
67         public String getNickname() {
68                 return nickname;
69         }
70
71         /**
72          * Returns the request URI of this identity.
73          *
74          * @return This identity’s request URI
75          */
76         public String getRequestUri() {
77                 return requestUri;
78         }
79
80         /**
81          * {@inheritDoc}
82          */
83         @Override
84         public boolean equals(Object obj) {
85                 if ((obj == null) || (obj.getClass() != this.getClass())) {
86                         return false;
87                 }
88                 Identity identity = (Identity) obj;
89                 return identifier.equals(identity.identifier);
90         }
91
92         /**
93          * {@inheritDoc}
94          */
95         @Override
96         public int hashCode() {
97                 return identifier.hashCode();
98         }
99
100 }