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=26dc449cd1c533ea1eb06bf9a0b12ab65067ffb7;hp=deaf25cb5e29041b4e3bb66a263676e705e21bd0;hb=c9e306ac8e3ada846e87a0cc256a20fc148f381c;hpb=a211a3bd360593efc9e7fba33d607a3b14d0a965 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 deaf25c..26dc449 100644 --- a/src/main/java/net/pterodactylus/sone/freenet/wot/OwnIdentity.java +++ b/src/main/java/net/pterodactylus/sone/freenet/wot/OwnIdentity.java @@ -72,8 +72,6 @@ public interface OwnIdentity extends Identity { /** * Sets the property with the given name to the given value. - *

- * This method is only called by the {@link IdentityManager}. * * @param name * The name of the property @@ -108,4 +106,28 @@ public interface OwnIdentity extends Identity { */ public void removeProperty(String name) throws WebOfTrustException; + /** + * Sets the trust for the given target identity. + * + * @param target + * The target to set the trust for + * @param trustValue + * The new trust value (from {@code -100} or {@code 100}) + * @param comment + * The comment for the trust assignment + * @throws WebOfTrustException + * if an error occurs + */ + public void setTrust(Identity target, int trustValue, String comment) throws WebOfTrustException; + + /** + * Removes any trust assignment for the given target identity. + * + * @param target + * The targe to remove the trust assignment for + * @throws WebOfTrustException + * if an error occurs + */ + public void removeTrust(Identity target) throws WebOfTrustException; + }