Update license to GPLv3, fix header comments
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / plugin / OwnIdentity.java
1 /*
2  * jFCPlib - OwnIdentity.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  * Wrapper around a web-of-trust own identity.
22  *
23  * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
24  */
25 public class OwnIdentity extends Identity {
26
27         /** The identity’s insert URI. */
28         private final String insertUri;
29
30         /**
31          * Creates a new web-of-trust own identity.
32          *
33          * @param identifier
34          *            The identifier of the identity
35          * @param nickname
36          *            The nickname of the identity
37          * @param requestUri
38          *            The request URI of the identity
39          * @param insertUri
40          *            The insert URI of the identity
41          */
42         public OwnIdentity(String identifier, String nickname, String requestUri, String insertUri) {
43                 super(identifier, nickname, requestUri);
44                 this.insertUri = insertUri;
45         }
46
47         /**
48          * Returns the insert URI of this identity.
49          *
50          * @return This identity’s insert URI
51          */
52         public String getInsertUri() {
53                 return insertUri;
54         }
55
56 }