[jboss-cvs] JBossAS SVN: r60680 - branches/Branch_4_2/server/src/main/org/jboss/deployment.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Feb 19 16:47:23 EST 2007


Author: scott.stark at jboss.org
Date: 2007-02-19 16:47:22 -0500 (Mon, 19 Feb 2007)
New Revision: 60680

Modified:
   branches/Branch_4_2/server/src/main/org/jboss/deployment/EARDeployerMBean.java
Log:
JBAS-4037, Add the EnablelibDirectoryByDefault attribute accessors

Modified: branches/Branch_4_2/server/src/main/org/jboss/deployment/EARDeployerMBean.java
===================================================================
--- branches/Branch_4_2/server/src/main/org/jboss/deployment/EARDeployerMBean.java	2007-02-19 21:35:39 UTC (rev 60679)
+++ branches/Branch_4_2/server/src/main/org/jboss/deployment/EARDeployerMBean.java	2007-02-19 21:47:22 UTC (rev 60680)
@@ -45,4 +45,17 @@
    boolean isCallByValue();
    void setCallByValue(boolean callByValue);
 
+   /** A flag the enables the default behavior of the ee5 library-directory.
+    * If true, the lib contents of an ear are assumed to be the default value
+    * for library-directory in the absence of an explicit library-directory. If
+    * false, there must be an explicit library-directory.
+    */
+   public boolean isEnablelibDirectoryByDefault();
+   /**
+    * Set the implicit library-directory behavior flag.
+    * @param flag - if true, the lib contents of an ear are assumed to be the
+    * default value for library-directory in the absence of an explicit
+    * library-directory. If false, there must be an explicit library-directory.
+    */
+   public void setEnablelibDirectoryByDefault(boolean flag);
 }




More information about the jboss-cvs-commits mailing list