[jboss-cvs] JBossAS SVN: r72927 - projects/metadata/trunk/src/main/java/org/jboss/metadata/ejb/jboss.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu May 1 09:04:28 EDT 2008


Author: scott.stark at jboss.org
Date: 2008-05-01 09:04:28 -0400 (Thu, 01 May 2008)
New Revision: 72927

Modified:
   projects/metadata/trunk/src/main/java/org/jboss/metadata/ejb/jboss/JBossEnterpriseBeanMetaData.java
Log:
JBMETA-32, update the javadoc on the container name properties

Modified: projects/metadata/trunk/src/main/java/org/jboss/metadata/ejb/jboss/JBossEnterpriseBeanMetaData.java
===================================================================
--- projects/metadata/trunk/src/main/java/org/jboss/metadata/ejb/jboss/JBossEnterpriseBeanMetaData.java	2008-05-01 12:57:52 UTC (rev 72926)
+++ projects/metadata/trunk/src/main/java/org/jboss/metadata/ejb/jboss/JBossEnterpriseBeanMetaData.java	2008-05-01 13:04:28 UTC (rev 72927)
@@ -594,6 +594,15 @@
       return getLocalJndiName();
    }
    
+   /**
+    * Get the kernel name for the ejb container. This is the managed property
+    * version admin tools may use to control the name. Generally its not set
+    * and the server will set the name via the generatedContainerName
+    * non-managed property.
+    * 
+    * @see #setGeneratedContainerName(String)
+    * @return containerName property value.
+    */
    public String getContainerName()
    {
       return containerName;
@@ -603,6 +612,14 @@
       this.containerName = containerName;
    }
 
+   /**
+    * Get the generated kernel name for the ejb container. This is the
+    * non-managed property version that the server would use to set the name
+    * it generated when no containerName property existed.
+    * 
+    * @see #getContainerName()
+    * @return generatedContainerName property value.
+    */
    @XmlTransient
    public String getGeneratedContainerName()
    {




More information about the jboss-cvs-commits mailing list