X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffreenet%2Fwot%2FOwnIdentity.java;h=d9ec16009d11324a72c61f919b68b6fa3b01d4cf;hb=fa63b855e28c5fbf270bfdca1bb23fd048affae5;hp=a8f24cb49ea0bda981d28f28310ddfd3cfebb08a;hpb=e8e813b99a7945130099845190efc4fca16b13bf;p=Sone.git 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 a8f24cb..d9ec160 100644 --- a/src/main/java/net/pterodactylus/sone/freenet/wot/OwnIdentity.java +++ b/src/main/java/net/pterodactylus/sone/freenet/wot/OwnIdentity.java @@ -31,8 +31,6 @@ public class OwnIdentity extends Identity { /** * Creates a new own identity. * - * @param webOfTrustConnector - * The Web of Trust connector * @param id * The ID of the identity * @param nickname @@ -42,8 +40,8 @@ public class OwnIdentity extends 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); + public OwnIdentity(String id, String nickname, String requestUri, String insertUri) { + super(id, nickname, requestUri); this.insertUri = insertUri; } @@ -60,70 +58,4 @@ public class OwnIdentity extends Identity { return insertUri; } - /** - * 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 { - if (getContexts().add(context)) { - 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 { - if (getContexts().remove(context)) { - 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 - */ - public void setProperty(String name, String value) { - properties.put(name, value); - /* TODO - set property. */ - } - - /** - * Removes the property with the given name. - * - * @param name - * The name of the property to remove - */ - public void removeProperty(String name) { - properties.remove(name); - /* TODO - remove property. */ - } - - // - // OBJECT METHODS - // - - /** - * {@inheritDoc} - */ - @Override - public String toString() { - return getClass().getSimpleName() + "[id=" + getId() + ",nickname=" + getNickname() + ",requestUri=" + getRequestUri() + ",insertUri=" + insertUri + "]"; - } - }