Update of /cvsroot/xdoclet/xdoclet/modules/bea/src/xdoclet/modules/bea/wls/ejb
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12809/xdoclet/modules/bea/src/xdoclet/modules/bea/wls/ejb
Modified Files:
WebLogicSubTask.java
Log Message:
XDT-861: createtables had invalid default value
Index: WebLogicSubTask.java
===================================================================
RCS file: /cvsroot/xdoclet/xdoclet/modules/bea/src/xdoclet/modules/bea/wls/ejb/WebLogicSubTask.java,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -r1.25 -r1.26
*** WebLogicSubTask.java 5 Sep 2004 22:54:47 -0000 1.25
--- WebLogicSubTask.java 8 Sep 2004 20:41:38 -0000 1.26
***************
*** 95,99 ****
private String poolName = "";
! private String createTables = CreateTablesType.FALSE;
private String persistence = DEFAULT_PERSISTENCE;
--- 95,99 ----
private String poolName = "";
! private String createTables = "";
private String persistence = DEFAULT_PERSISTENCE;
***************
*** 307,315 ****
* If "True" or "CreateOnly", then at deployment time if there is no Table in the Database for a CMP Bean, the
* Container will attempt to CREATE the Table (based on information found in the deployment files and in the Bean
! * Class). Valid values are "True" and "False" for WLS Servers < Version 8 and "CreateOnly", "DropAndCreate",
! * "DropAndCreateAlways", "AlterOrCreate" and "Disabled" for WLS Servers > 8.1.
*
* @param flag The new Createtables value
! * @ant.not-required
*/
public void setCreatetables(CreateTablesType flag)
--- 307,316 ----
* If "True" or "CreateOnly", then at deployment time if there is no Table in the Database for a CMP Bean, the
* Container will attempt to CREATE the Table (based on information found in the deployment files and in the Bean
! * Class). Valid values are "True" and "False" for WLS Servers < Version 8.1 and "CreateOnly", "DropAndCreate",
! * "DropAndCreateAlways", "AlterOrCreate" and "Disabled" for WLS Servers >= 8.1.
*
* @param flag The new Createtables value
! * @ant.not-required No, default is "False" for WLS Servers < Version 8.1 and "Disabled" for WLS Servers >=
! * 8.1
*/
public void setCreatetables(CreateTablesType flag)
***************
*** 373,379 ****
/**
! * Describe what the method does
! *
! * @exception XDocletException Describe the exception
*/
public void execute() throws XDocletException
--- 374,379 ----
/**
! * @exception XDocletException
! * @see xdoclet.SubTask#execute()
*/
public void execute() throws XDocletException
|