From: David ‘Bombe’ Roden Date: Mon, 13 Dec 2010 21:13:27 +0000 (+0100) Subject: Add method to set identity trust. X-Git-Tag: 0.4^2~8^2~57 X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=501bbf467ce0a80bde2476c9bbc1b4d6842be811;hp=91724f5f8bd2a4e5425835b7d926ae947adb5fbd;p=Sone.git Add method to set identity trust. --- diff --git a/src/main/java/net/pterodactylus/sone/freenet/wot/WebOfTrustConnector.java b/src/main/java/net/pterodactylus/sone/freenet/wot/WebOfTrustConnector.java index 08f512c..073db64 100644 --- a/src/main/java/net/pterodactylus/sone/freenet/wot/WebOfTrustConnector.java +++ b/src/main/java/net/pterodactylus/sone/freenet/wot/WebOfTrustConnector.java @@ -219,6 +219,24 @@ public class WebOfTrustConnector implements ConnectorListener { } /** + * Sets the trust for the given identity. + * + * @param ownIdentity + * The trusting identity + * @param identity + * The trusted identity + * @param trust + * The amount of trust (-100 thru 100) + * @param comment + * The comment or explanation of the trust value + * @throws PluginException + * if an error occured talking to the Web of Trust plugin + */ + public void setTrust(OwnIdentity ownIdentity, Identity identity, int trust, String comment) throws PluginException { + performRequest(SimpleFieldSetConstructor.create().put("Message", "SetTrust").put("Truster", ownIdentity.getId()).put("Trustee", identity.getId()).put("Value", String.valueOf(trust)).put("Comment", comment).get(), "TrustSet"); + } + + /** * Pings the Web of Trust plugin. If the plugin can not be reached, a * {@link PluginException} is thrown. *