X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffreenet%2Fwot%2FOwnIdentity.java;fp=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffreenet%2Fwot%2FOwnIdentity.java;h=371622939ce4dee62f7e8466d48cac073d4038dd;hp=23845205c33355952f21adecb41ef696f8b2abac;hb=d196ff9daeaf1661c48060bdeb426b051a0c1ef3;hpb=732fe4fc507605a73f7162cfcd808f8db6076950 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 2384520..3716229 100644 --- a/src/main/java/net/pterodactylus/sone/freenet/wot/OwnIdentity.java +++ b/src/main/java/net/pterodactylus/sone/freenet/wot/OwnIdentity.java @@ -93,10 +93,12 @@ public class OwnIdentity extends Identity { * 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) { - properties.put(name, value); - /* TODO - set property. */ + public void setProperty(String name, String value) throws PluginException { + webOfTrustConnector.setProperty(this, name, value); } /** @@ -104,10 +106,12 @@ public class OwnIdentity extends Identity { * * @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) { - properties.remove(name); - /* TODO - remove property. */ + public void removeProperty(String name) throws PluginException { + webOfTrustConnector.removeProperty(this, name); } //