Merge branch 'next' into wot-integration
[Sone.git] / src / main / java / net / pterodactylus / sone / freenet / wot / Identity.java
index 0e13e9e..d4288ea 100644 (file)
 
 package net.pterodactylus.sone.freenet.wot;
 
-import java.util.Collections;
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.Map;
 import java.util.Set;
 
 /**
@@ -42,15 +38,6 @@ public class Identity {
        /** The request URI of the identity. */
        private final String requestUri;
 
-       /** The contexts of the identity. */
-       protected final Set<String> contexts = Collections.synchronizedSet(new HashSet<String>());
-
-       /** Whether the contexts have already been loaded. */
-       private volatile boolean contextsLoaded = false;
-
-       /** The properties of the identity. */
-       private final Map<String, String> properties = Collections.synchronizedMap(new HashMap<String, String>());
-
        /**
         * Creates a new identity.
         *
@@ -107,33 +94,12 @@ public class Identity {
         * set is returned.
         *
         * @return The contexts of the identity
-        */
-       public Set<String> getContexts() {
-               try {
-                       return getContexts(false);
-               } catch (PluginException pe1) {
-                       return Collections.emptySet();
-               }
-       }
-
-       /**
-        * Returns the contexts of the identity.
-        *
-        * @param forceReload
-        *            {@code true} to force a reload of the contexts
-        * @return The contexts of the identity
         * @throws PluginException
         *             if an error occured communicating with the Web of Trust
         *             plugin
         */
-       public Set<String> getContexts(boolean forceReload) throws PluginException {
-               if (!contextsLoaded || forceReload) {
-                       Set<String> contexts = webOfTrustConnector.loadIdentityContexts(this);
-                       contextsLoaded = true;
-                       this.contexts.clear();
-                       this.contexts.addAll(contexts);
-               }
-               return Collections.unmodifiableSet(contexts);
+       public Set<String> getContexts() throws PluginException {
+               return webOfTrustConnector.loadIdentityContexts(this);
        }
 
        /**
@@ -143,54 +109,27 @@ public class Identity {
         *            The context to check for
         * @return {@code true} if this identity has the given context,
         *         {@code false} otherwise
+        * @throws PluginException
+        *             if an error occured communicating with the Web of Trust
+        *             plugin
         */
-       public boolean hasContext(String context) {
+       public boolean hasContext(String context) throws PluginException {
                return getContexts().contains(context);
        }
 
        /**
-        * Returns the properties of the identity.
-        *
-        * @return The properties of the identity
-        */
-       public Map<String, String> getProperties() {
-               return Collections.unmodifiableMap(properties);
-       }
-
-       /**
         * Returns the value of the property with the given name.
         *
         * @param name
         *            The name of the property
         * @return The value of the property, or {@code null} if there is no such
         *         property
+        * @throws PluginException
+        *             if an error occured communicating with the Web of Trust
+        *             plugin
         */
-       public String getProperty(String name) {
-               return properties.get(name);
-       }
-
-       /**
-        * 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. */
+       public String getProperty(String name) throws PluginException {
+               return webOfTrustConnector.getProperty(this, name);
        }
 
        //