Author: rfeng
Date: Tue May 12 00:13:28 2009
New Revision: 773735

URL: http://svn.apache.org/viewvc?rev=773735&view=rev
Log:
Add comments

Modified:
    
tuscany/java/sca/modules/implementation-node/src/main/java/org/apache/tuscany/sca/node/configuration/NodeConfiguration.java

Modified: 
tuscany/java/sca/modules/implementation-node/src/main/java/org/apache/tuscany/sca/node/configuration/NodeConfiguration.java
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/modules/implementation-node/src/main/java/org/apache/tuscany/sca/node/configuration/NodeConfiguration.java?rev=773735&r1=773734&r2=773735&view=diff
==============================================================================
--- 
tuscany/java/sca/modules/implementation-node/src/main/java/org/apache/tuscany/sca/node/configuration/NodeConfiguration.java
 (original)
+++ 
tuscany/java/sca/modules/implementation-node/src/main/java/org/apache/tuscany/sca/node/configuration/NodeConfiguration.java
 Tue May 12 00:13:28 2009
@@ -22,18 +22,42 @@
 import java.util.List;
 
 /**
- *
+ * The configuration for a Node which represents the deployment of an SCA 
composite application
  */
 public interface NodeConfiguration {
+    /**
+     * Get the URI of the SCA domain that manages the composite application
+     * @return The URI of the SCA domain
+     */
     String getDomainURI();
 
+    /**
+     * Set the URI of the SCA domain
+     * @param domainURI The URI of the SCA domain
+     */
     void setDomainURI(String domainURI);
 
+    /**
+     * Get the URI of the node. It uniquely identifies a node within the SCA 
domain
+     * @return The URI of the node
+     */
     String getURI();
 
+    /**
+     * Set the URI of the node
+     * @param uri The URI of the node
+     */
     void setURI(String uri);
 
+    /**
+     * Get a list of confiurations for SCA contributions
+     * @return A list of configurations for SCA contributions
+     */
     List<ContributionConfiguration> getContributions();
 
+    /**
+     * Get a list of configurations for SCA bindings
+     * @return A list of configurations for SCA bindings
+     */
     List<BindingConfiguration> getBindings();
 }


Reply via email to