[jboss-cvs] JBossAS SVN: r69921 - projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Feb 19 00:48:36 EST 2008


Author: scott.stark at jboss.org
Date: 2008-02-19 00:48:36 -0500 (Tue, 19 Feb 2008)
New Revision: 69921

Modified:
   projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/DeploymentTemplateInfo.java
Log:
Update comments

Modified: projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/DeploymentTemplateInfo.java
===================================================================
--- projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/DeploymentTemplateInfo.java	2008-02-19 05:00:07 UTC (rev 69920)
+++ projects/microcontainer/trunk/managed/src/main/org/jboss/managed/api/DeploymentTemplateInfo.java	2008-02-19 05:48:36 UTC (rev 69921)
@@ -33,7 +33,20 @@
  */
 public interface DeploymentTemplateInfo
 {
+   /**
+    * The name of the DeploymentTemplate this info corresponds to
+    * @return name of the deployment template
+    */
    public String getName();
+   /**
+    * Information about the deployment template
+    * @return Information about the deployment template
+    */
    public String getDescription();
+   /**
+    * Get the template properties.
+    * @return A name to property mapping of the properties that can be set
+    * for use by the deployment template.
+    */
    public Map<String, ManagedProperty> getProperties();
 }




More information about the jboss-cvs-commits mailing list