X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffreenet%2Fwot%2FIdentity.java;h=5816b47772e0e750117c6e92c3fb69630cb2ff4f;hb=58f449dd0b8ebad51fd8fc06c52233e9a160e0bc;hp=c3053ae8a16c08eebbeeed31c1181b366bc59818;hpb=5ac1da7c51270ade6171b9755cc26c9b2385c426;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/freenet/wot/Identity.java b/src/main/java/net/pterodactylus/sone/freenet/wot/Identity.java index c3053ae..5816b47 100644 --- a/src/main/java/net/pterodactylus/sone/freenet/wot/Identity.java +++ b/src/main/java/net/pterodactylus/sone/freenet/wot/Identity.java @@ -40,7 +40,7 @@ public class Identity { private final String requestUri; /** The contexts of the identity. */ - protected final Set contexts = Collections.synchronizedSet(new HashSet()); + private final Set contexts = Collections.synchronizedSet(new HashSet()); /** The properties of the identity. */ private final Map properties = Collections.synchronizedMap(new HashMap()); @@ -93,16 +93,29 @@ public class Identity { } /** - * Returns the contexts of the identity. + * Returns all contexts of this identity. * - * @return The contexts of the identity + * @return All contexts of this identity */ public Set getContexts() { return Collections.unmodifiableSet(contexts); } /** - * Returns whether the identity contains the given context. + * Sets all contexts of this identity. + *

+ * This method is only called by the {@link IdentityManager}. + * + * @param contexts + * All contexts of the identity + */ + void setContexts(Set contexts) { + this.contexts.clear(); + this.contexts.addAll(contexts); + } + + /** + * Returns whether this identity has the given context. * * @param context * The context to check for @@ -114,48 +127,96 @@ public class Identity { } /** - * Returns the properties of the identity. + * Adds the given context to this identity. + *

+ * This method is only called by the {@link IdentityManager}. * - * @return The properties of the identity + * @param context + * The context to add + */ + void addContext(String context) { + contexts.add(context); + } + + /** + * Removes the given context from this identity. + *

+ * This method is only called by the {@link IdentityManager}. + * + * @param context + * The context to remove + */ + void removeContext(String context) { + contexts.remove(context); + } + + /** + * Returns all properties of this identity. + * + * @return All properties of this identity */ public Map getProperties() { - return Collections.unmodifiableMap(properties); + synchronized (properties) { + return Collections.unmodifiableMap(properties); + } } /** - * Returns the value of the property with the given name. + * Sets all properties of this identity. + *

+ * This method is only called by the {@link IdentityManager}. * - * @param name - * The name of the property - * @return The value of the property, or {@code null} if there is no such - * property + * @param properties + * The new properties of this identity */ - public String getProperty(String name) { - return properties.get(name); + void setProperties(Map properties) { + synchronized (this.properties) { + this.properties.clear(); + this.properties.putAll(properties); + } } /** * 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 to set + * The name of the property * @param value - * The new value of the property + * The value of the property */ - public void setProperty(String name, String value) { - properties.put(name, value); - /* TODO - set property. */ + void setProperty(String name, String value) { + synchronized (properties) { + properties.put(name, value); + } + } + + /** + * Returns the value of the property with the given name. + * + * @param name + * The name of the property + * @return The value of the property + */ + public String getProperty(String name) { + synchronized (properties) { + return properties.get(name); + } } /** * Removes the property with the given name. + *

+ * This method is only called by the {@link IdentityManager}. * * @param name * The name of the property to remove */ - public void removeProperty(String name) { - properties.remove(name); - /* TODO - remove property. */ + void removeProperty(String name) { + synchronized (properties) { + properties.remove(name); + } } // @@ -182,4 +243,12 @@ public class Identity { return identity.id.equals(id); } + /** + * {@inheritDoc} + */ + @Override + public String toString() { + return getClass().getSimpleName() + "[id=" + id + ",nickname=" + nickname + ",contexts=" + contexts + ",properties=" + properties + "]"; + } + }