You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by jm...@apache.org on 2007/02/27 02:06:48 UTC

svn commit: r512100 - in /incubator/tuscany/java/sca/kernel: core/src/main/java/org/apache/tuscany/core/deployer/AbstractDeploymentContext.java spi/src/main/java/org/apache/tuscany/spi/deployer/DeploymentContext.java

Author: jmarino
Date: Mon Feb 26 17:06:46 2007
New Revision: 512100

URL: http://svn.apache.org/viewvc?view=rev&rev=512100
Log:
remove extensions from DeploymentContext

Modified:
    incubator/tuscany/java/sca/kernel/core/src/main/java/org/apache/tuscany/core/deployer/AbstractDeploymentContext.java
    incubator/tuscany/java/sca/kernel/spi/src/main/java/org/apache/tuscany/spi/deployer/DeploymentContext.java

Modified: incubator/tuscany/java/sca/kernel/core/src/main/java/org/apache/tuscany/core/deployer/AbstractDeploymentContext.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/kernel/core/src/main/java/org/apache/tuscany/core/deployer/AbstractDeploymentContext.java?view=diff&rev=512100&r1=512099&r2=512100
==============================================================================
--- incubator/tuscany/java/sca/kernel/core/src/main/java/org/apache/tuscany/core/deployer/AbstractDeploymentContext.java (original)
+++ incubator/tuscany/java/sca/kernel/core/src/main/java/org/apache/tuscany/core/deployer/AbstractDeploymentContext.java Mon Feb 26 17:06:46 2007
@@ -35,7 +35,6 @@
     private final URI componentId;
     private final ClassLoader classLoader;
     private final URL scdlLocation;
-    private final Map<String, Object> properties = new HashMap<String, Object>();
     private final Map<URI, Component> components = new HashMap<URI, Component>();
 
     /**
@@ -57,18 +56,6 @@
 
     public URL getScdlLocation() {
         return scdlLocation;
-    }
-
-    public Object getExtension(String name) {
-        return properties.get(name);
-    }
-
-    public void putExtension(String name, Object value) {
-        if (value == null) {
-            properties.remove(name);
-        } else {
-            properties.put(name, value);
-        }
     }
 
     public URI getComponentId() {

Modified: incubator/tuscany/java/sca/kernel/spi/src/main/java/org/apache/tuscany/spi/deployer/DeploymentContext.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/kernel/spi/src/main/java/org/apache/tuscany/spi/deployer/DeploymentContext.java?view=diff&rev=512100&r1=512099&r2=512100
==============================================================================
--- incubator/tuscany/java/sca/kernel/spi/src/main/java/org/apache/tuscany/spi/deployer/DeploymentContext.java (original)
+++ incubator/tuscany/java/sca/kernel/spi/src/main/java/org/apache/tuscany/spi/deployer/DeploymentContext.java Mon Feb 26 17:06:46 2007
@@ -75,22 +75,6 @@
      */
     URI getComponentId();
 
-    /**
-     * Return the extension property with the supplied name.
-     *
-     * @param name the name of the property
-     * @return the property value; if null indicates that no property is present
-     */
-    Object getExtension(String name);
-
-    /**
-     * Set the value of an extension property.
-     *
-     * @param name  the name of the property
-     * @param value the property value; if null then the extension property is removed
-     */
-    void putExtension(String name, Object value);
-
     @Deprecated
     Map<URI, Component> getComponents();
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org