X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffreenet%2Fwot%2FOwnIdentity.java;h=71eaa5ea3602d3331df3b554d935a2efff1d118c;hp=371622939ce4dee62f7e8466d48cac073d4038dd;hb=62573c314957b1851f4fbe693b8746686caa940a;hpb=d196ff9daeaf1661c48060bdeb426b051a0c1ef3 diff --git a/src/main/java/net/pterodactylus/sone/freenet/wot/OwnIdentity.java b/src/main/java/net/pterodactylus/sone/freenet/wot/OwnIdentity.java index 3716229..71eaa5e 100644 --- a/src/main/java/net/pterodactylus/sone/freenet/wot/OwnIdentity.java +++ b/src/main/java/net/pterodactylus/sone/freenet/wot/OwnIdentity.java @@ -1,5 +1,5 @@ /* - * Sone - OwnIdentity.java - Copyright © 2010 David Roden + * Sone - OwnIdentity.java - Copyright © 2010–2016 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,113 +17,22 @@ package net.pterodactylus.sone.freenet.wot; + /** - * An own identity is an identity that the owner of the node has full control - * over. - * - * @author David ‘Bombe’ Roden + * Defines a local identity, an own identity. */ -public class OwnIdentity extends Identity { - - /** The insert URI of the identity. */ - private final String insertUri; - - /** - * Creates a new own identity. - * - * @param webOfTrustConnector - * The Web of Trust connector - * @param id - * The ID of the identity - * @param nickname - * The nickname of the identity - * @param requestUri - * The request URI of the identity - * @param insertUri - * The insert URI of the identity - */ - public OwnIdentity(WebOfTrustConnector webOfTrustConnector, String id, String nickname, String requestUri, String insertUri) { - super(webOfTrustConnector, id, nickname, requestUri); - this.insertUri = insertUri; - } - - // - // ACCESSORS - // +public interface OwnIdentity extends Identity { /** * Returns the insert URI of the identity. * * @return The insert URI of the identity */ - public String getInsertUri() { - return insertUri; - } + public String getInsertUri(); - /** - * Adds the given context to this identity. - * - * @param context - * The context to add - * @throws PluginException - * if an error occured communicating with the Web of Trust - * plugin - */ - public void addContext(String context) throws PluginException { - webOfTrustConnector.addContext(this, context); - } - - /** - * Removes the given context from this identity. - * - * @param context - * The context to remove - * @throws PluginException - * if an error occured communicating with the Web of Trust - * plugin - */ - public void removeContext(String context) throws PluginException { - webOfTrustConnector.removeContext(this, context); - } - - /** - * Sets the property with the given name to the given value. - * - * @param name - * The name of the property to set - * @param value - * The new value of the property - * @throws PluginException - * if an error occured communicating with the Web of Trust - * plugin - */ - public void setProperty(String name, String value) throws PluginException { - webOfTrustConnector.setProperty(this, name, value); - } - - /** - * Removes the property with the given name. - * - * @param name - * The name of the property to remove - * @throws PluginException - * if an error occured communicating with the Web of Trust - * plugin - */ - public void removeProperty(String name) throws PluginException { - webOfTrustConnector.removeProperty(this, name); - } - - // - // OBJECT METHODS - // - - /** - * {@inheritDoc} - */ - @Override - public String toString() { - return getClass().getSimpleName() + "[id=" + getId() + ",nickname=" + getNickname() + ",requestUri=" + getRequestUri() + ",insertUri=" + insertUri + "]"; - } + public OwnIdentity addContext(String context); + public OwnIdentity removeContext(String context); + public OwnIdentity setProperty(String name, String value); + public OwnIdentity removeProperty(String name); }