User: robertc 
  Date: 00/09/14 16:35:43

  Added:       cocobase/conf JBOSS2EBMF.properties
                        JBOSS2CMPDDPROP.properties
                        JBOSS2ALTCMPDDPROP.properties CocoCmp.properties
  Log:
  Beggining Templates for CMP implementation
  
  Revision  Changes    Path
  1.1                  contrib/cocobase/conf/JBOSS2EBMF.properties
  
  Index: JBOSS2EBMF.properties
  ===================================================================
  ;
  ; This is the template file used to generate new java programming files
  ;
  ; The following variables are guaranteed to be provided by the CocoBase
  ; code generation runtime (note the variables are case sensitive!)
  ;
  ; HASPACKAGE - If we have a packagename prefix.
  ; packagename - The packagename (if present), such as com.thought
  ; Classname - The class name (such as Employee)
  ; supportCBDrop - If we wish to use the Properties based CBDrop interface.
  ; supportCBProp - If we wish to use the Properties based CBProp interface.
  ; supportODBMS - If we wish to generate code with ODBMS navigation.
  ; supportODBMSandCBProp - If we've selected both ODBMS and CBProp flags.
  ; EOL - The End of line character to be used when generating the java source
  ;       code.  This is OS dependent.
  ; supportTransObj - If we support using a Transaction object in the code
  ;                   generation for the 1-1, 1-M or M-M code.
  ; Column - The Java column name to use in constructin methods such as getPhone
  ; column - The Java column name (such as phone or empSkill);
  ; COLUMN - The Map's column name (such as "PHONE" or "EMP_SKILL")
  ; COUNT - current column count
  ; Targetclass - used in 1-1,1-M & M-M - The target class in the relationship
  ; Targetcolumn - used in 1-1,1-M & M-M - The target column in the relationship
  ; clonelist - The list of column attributes in the clone() method.
  ; tostringlist - The list of column attributes in the clone() method.
  ; dropsetlist - The code for the columns in the setObjectData() method.
  ; dropgetlist - The code for the columns in the getObjectData() method.
  ; propsetlist - The code for the columns in the setPropObjectData() method.
  ; propgetlist - The code for the columns in the getPropObjectData() method.
  ; iskey - Notes whether the column is part of the primary key.
  
  ; If we have a package, then insert the packing name string.
  PACKAGEINFO = 
  
  ; The imports for each class generated.
  IMPORTS = 
  
  ; The Class string to start the new java class with.
  CLASSBEGIN = <CBSET linkedclasses=>
  
  ; The comment used for each setAttr() method
  SETCOMMENT = 
  
  ; The comment used for each getAttr() method
  GETCOMMENT = 
  
  ; To appear just before the list of instance variables.
  CLASSVARCOMMENT = 
  
  ; The code necessary to define an attribute as java.types.BIT
  BITDEFINE = 
  
  BITGET = 
  
  BITSET = 
  
  ; Use the current position for this element fetch.  %COUNT% is the reserved
  ; variable to specify the current location.
  BITCBDROPSET = 
  
  BITCBDROPGET = 
  
  ; Note the use of uppercase to denote the Property value.
  BITCBPROPSET = 
  
  BITCBPROPGET = 
  
  BITCLONESET = 
  
  BITTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.CHAR or java.types.VARCHAR
  CHARDEFINE = 
  
  CHARGET =
  
  CHARSET =
  
  CHARCBDROPSET = 
  
  CHARCBDROPGET = 
  
  CHARCBPROPSET = 
  
  CHARCBPROPGET = 
  
  CHARCLONESET = 
  
  CHARTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.DECIMAL or 
java.types.NUMERIC
  BIGDECIMALDEFINE = 
  
  BIGDECIMALGET =
  
  BIGDECIMALSET =
  
  BIGDECIMALCBDROPSET = 
  
  BIGDECIMALCBDROPGET = 
  
  BIGDECIMALCBPROPSET = 
  
  BIGDECIMALCBPROPGET = 
  
  BIGDECIMALCLONESET = 
  
  BIGDECIMALTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.TINYINT
  TINYINTDEFINE = 
  
  TINYINTGET =
  
  TINYINTSET = 
  
  TINYINTCBDROPSET = 
  
  TINYINTCBDROPGET = 
  
  TINYINTCBPROPSET = 
  
  TINYINTCBPROPGET = 
  
  TINYINTCLONESET = 
  
  TINYINTTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.SMALLINT
  SMALLINTDEFINE = 
  
  SMALLINTGET =
  
  SMALLINTSET = 
  
  SMALLINTCBDROPSET = 
  
  SMALLINTCBDROPGET = 
  
  SMALLINTCBPROPGET = 
  
  SMALLINTCBPROPSET = 
  
  SMALLINTCLONESET = 
  
  SMALLINTTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.INTEGER
  INTEGERDEFINE = 
  
  INTEGERGET = 
  
  INTEGERSET = 
  
  INTEGERCBDROPSET = 
  
  INTEGERCBDROPGET = 
  
  INTEGERCBPROPGET = 
  
  INTEGERCBPROPSET = 
  
  INTEGERCLONESET  = 
  
  INTEGERTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.BIGINT
  BIGINTDEFINE = 
  
  BIGINTGET =
  
  BIGINTSET =
  
  BIGINTCBDROPSET = 
  
  BIGINTCBDROPGET =
  
  BIGINTCBPROPGET = 
  
  BIGINTCBPROPSET = 
  
  BIGINTCLONESET = 
  
  BIGINTTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.TIMESTAMP
  TIMESTAMPDEFINE = 
  
  TIMESTAMPGET = 
  
  TIMESTAMPSET = 
  
  TIMESTAMPCBDROPSET = 
  
  TIMESTAMPCBDROPGET = 
  
  TIMESTAMPCBPROPGET = 
  
  TIMESTAMPCBPROPSET = 
  
  TIMESTAMPCLONESET  = 
  
  TIMESTAMPTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.TIME
  TIMEDEFINE = 
  
  TIMEGET = 
  
  TIMESET = 
  
  TIMECBDROPSET = 
  
  TIMECBDROPGET = 
  
  TIMECBPROPGET = 
  
  TIMECBPROPSET = 
  
  TIMECLONESET = 
  
  TIMETOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.REAL
  REALDEFINE = 
  
  REALGET = 
  
  REALSET = 
  
  REALCBDROPSET = 
  
  REALCBDROPGET = 
  
  REALCBPROPGET = 
  
  REALCBPROPSET = 
  
  REALCLONESET = 
  
  REALTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.FLOAT
  FLOATDEFINE = 
  
  FLOATGET = 
  
  FLOATSET = 
  
  FLOATCBDROPSET = 
  
  FLOATCBDROPGET =
  
  FLOATCBPROPGET = 
  
  FLOATCBPROPSET = 
  
  FLOATCLONESET = 
  
  FLOATTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.DOUBLE
  DOUBLEDEFINE = 
  
  DOUBLEGET = 
  
  DOUBLESET = 
  
  DOUBLECBDROPSET = 
  
  DOUBLECBDROPGET =
  
  DOUBLECBPROPGET = 
  
  DOUBLECBPROPSET = 
  
  DOUBLECLONESET  = 
  
  DOUBLETOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.VARBINARY
  VARBINARYDEFINE = 
  
  VARBINARYGET = 
  
  VARBINARYSET = 
  
  VARBINARYCBDROPSET = 
  
  VARBINARYCBDROPGET = 
  
  VARBINARYCBPROPGET = 
  
  VARBINARYCBPROPSET = 
  
  VARBINARYCLONESET = 
  
  VARBINARYTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.LONGVARBINARY
  LONGVARBINARYDEFINE = 
  
  LONGVARBINARYGET = 
  
  LONGVARBINARYSET = 
  
  LONGVARBINARYCBDROPSET = 
  
  LONGVARBINARYCBDROPGET = 
  
  LONGVARBINARYCBPROPGET =
  
  LONGVARBINARYCBPROPSET = 
  
  LONGVARBINARYCLONESET = 
  
  LONGVARBINARYTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.LONGVARCHAR
  LONGVARCHARDEFINE = 
  
  LONGVARCHARGET = 
  
  LONGVARCHARSET = 
  
  LONGVARCHARCBDROPSET = 
  
  LONGVARCHARCBDROPGET = 
  
  LONGVARCHARCBPROPGET = 
  
  LONGVARCHARCBPROPSET = 
  
  LONGVARCHARCLONESET = 
  
  LONGVARCHARTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.DATE
  DATEDEFINE = 
  
  DATEGET = 
  
  DATESET = 
  
  DATECBDROPSET = 
  
  DATECBDROPGET = 
  
  DATECBPROPGET = 
  
  DATECBPROPSET = 
  
  DATECLONESET = 
  
  DATETOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.BINARY
  BINARYDEFINE = 
  
  BINARYGET = 
  
  BINARYSET = 
  
  BINARYCBDROPSET = 
  
  BINARYCBDROPGET = 
  
  BINARYCBPROPGET = 
  
  BINARYCBPROPSET = 
  
  BINARYCLONESET = 
  
  BINARYTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.OTHER
  UNKNOWNDEFINE = 
  
  UNKNOWNGET = 
  
  UNKNOWNSET = 
  
  UNKNOWNCBDROPSET = 
  
  UNKNOWNCBDROPGET = 
  
  UNKNOWNCBPROPGET = 
  
  UNKNOWNCBPROPSET = 
  
  UNKNOWNCLONESET = 
  
  UNKNOWNTOSTRINGSET = 
  
  ; If we have and ODBMS & CBProp, this adds in the clone code to clone the
  ; ODBMS specific information.
  COLCLONESET =
  
  ; If we have and ODBMS & CBProp, this adds in the toString code to toString the
  ; ODBMS specific information.
  COLTOSTRINGSET = 
  
  ; This ends the toString method.
  CLASSTOSTRING = 
  
  ; This tries to include all of the variables above the columns (such as ODBMS
  ; and CBProp variables).
  CLASSVARS = 
  
  ; If we have and ODBMS & CBProp, this adds the ODBMS variables to the 
  ; getPropObjectData method.
  LOIDPROPSET =
  
  ; If we have and ODBMS & CBProp, this adds the ODBMS variables to the 
  ; setPropObjectData method.
  LOIDPROPGET = 
  
  ; If we have and ODBMS & CBProp, this adds the ODBMS navigation variable to the 
  ; getPropObjectData method.
  NAVLOIDPROPSET = 
  
  ; If we have and ODBMS & CBProp, this adds the ODBMS navigation variable to the 
  ; setPropObjectData method.
  NAVLOIDPROPGET = 
  
  ; If we have and ODBMS & CBProp, this adds an ODBMS accessor method for the
  ; Logical Object ID method.
  LOIDGET = 
  
  ; If we have and ODBMS & CBProp, this adds an ODBMS accessor method for the
  ; Logical Object ID method.
  LOIDSET = 
  
  ; If we have and ODBMS & CBProp, this adds an ODBMS accessor method for the
  ; Logical Object ID navigation method.
  GETNAVLOID = 
  
  ; If we have and ODBMS & CBProp, this adds an ODBMS accessor method for the
  ; Logical Object ID navigation method.
  SETNAVLOID = 
  
  ; This is the method used to generate the clone() code - not used in EJBHOME.
  CLONESTRING = 
  
  ; This is the method used to generate the toString() code.
  TOSTRINGSTRING = 
  
  ; This is the method used to generate the CBDrop.setObjectData() code.
  DROPSETSTRING = 
  
  ; This is the method used to generate the CBDrop.getObjectData() code.
  DROPGETSTRING = 
  
  ; This is the method used to generate the CBProp.setPropObjectData() code.
  PROPSETSTRING = 
  
  ; This is the method used to generate the CBProp.getPropObjectData() code.
  PROPGETSTRING = 
  
  ; This comment is embedded in another comment within this file by using
  ; a <CBINCLUDE ODBMSCOMMENT>.  It provides a great example of how to
  ; use the <CBINCLUDE directive>
  ODBMSCOMMENT = 
  
  METHODNAV = 
  LINK1MDEFINE = <CBIF linkqualifier=BEAN_LINK><CBIFNOT linkedclasses contains 
%Targetclassnopkg%><CBAPPEND linkedclasses+\
  Name: 
%packagedirnameunix%%fileseparatorunix%%Targetclassnopkg%%BEAN_NAME_SUFFIX%DD.ser%EOL%\
  Enterprise-Bean: True%EOL%\
  %EOL%></CBIFNOT></CBIF>
  LINK1MGET = 
  LINK1MINSERT = 
  LINK1MUPDATE = 
  LINK1MDELETE = 
  METHODNAV = 
  LINK11DEFINE = <CBIF linkqualifier=BEAN_LINK><CBIFNOT linkedclasses contains 
%Targetclassnopkg%><CBAPPEND linkedclasses+\
  Name: 
%packagedirnameunix%%fileseparatorunix%%Targetclassnopkg%%BEAN_NAME_SUFFIX%DD.ser%EOL%\
  Enterprise-Bean: True%EOL%\
  %EOL%></CBIFNOT></CBIF>
  
  LINK11GET = 
  LINK11INSERT = 
  LINK11UPDATE = 
  LINK11DELETE = 
  
  
  PKGDIRPREFIX = <CBIF HASPACKAGE>%packagedirnameunix%%fileseparatorunix%</CBIF>
  
  CLASSEND = Manifest-Version: 1.0%EOL%\
  Created-By: CocoAdmin/3.0.2 (THOUGHT Inc.)%EOL%\
  %EOL%\
  Name: <CBINCLUDE PKGDIRPREFIX>%Classname%%BEAN_NAME_SUFFIX%DD.ser%EOL%\
  Enterprise-Bean: True%EOL%\
  %EOL%\
  %linkedclasses%
  
  
  
  1.1                  contrib/cocobase/conf/JBOSS2CMPDDPROP.properties
  
  Index: JBOSS2CMPDDPROP.properties
  ===================================================================
  ;
  ; This is the template file used to generate new java programming files
  ;
  ; The following variables are guaranteed to be provided by the CocoBase
  ; code generation runtime (note the variables are case sensitive!)
  ;
  ; HASPACKAGE - If we have a packagename prefix.
  ; packagename - The packagename (if present), such as com.thought
  ; Classname - The class name (such as Employee)
  ; supportCBDrop - If we wish to use the Properties based CBDrop interface.
  ; supportCBProp - If we wish to use the Properties based CBProp interface.
  ; supportODBMS - If we wish to generate code with ODBMS navigation.
  ; supportODBMSandCBProp - If we've selected both ODBMS and CBProp flags.
  ; EOL - The End of line character to be used when generating the java source
  ;       code.  This is OS dependent.
  ; supportTransObj - If we support using a Transaction object in the code
  ;                   generation for the 1-1, 1-M or M-M code.
  ; Column - The Java column name to use in constructin methods such as getPhone
  ; column - The Java column name (such as phone or empSkill);
  ; COLUMN - The Map's column name (such as "PHONE" or "EMP_SKILL")
  ; COUNT - current column count
  ; Targetclass - used in 1-1,1-M & M-M - The target class in the relationship
  ; Targetcolumn - used in 1-1,1-M & M-M - The target column in the relationship
  ; clonelist - The list of column attributes in the clone() method.
  ; tostringlist - The list of column attributes in the clone() method.
  ; dropsetlist - The code for the columns in the setObjectData() method.
  ; dropgetlist - The code for the columns in the getObjectData() method.
  ; propsetlist - The code for the columns in the setPropObjectData() method.
  ; propgetlist - The code for the columns in the getPropObjectData() method.
  ; iskey - Notes whether the column is part of the primary key.
  
  ; If we have a package, then insert the packing name string.
  PACKAGEINFO = 
  
  ; The imports for each class generated.
  IMPORTS = 
  
  ; The Class string to start the new java class with.
  CLASSBEGIN = 
  
  ; The comment used for each setAttr() method
  SETCOMMENT = 
  
  ; The comment used for each getAttr() method
  GETCOMMENT = 
  
  ; To appear just before the list of instance variables.
  CLASSVARCOMMENT = 
  
  ; The code necessary to define an attribute as java.types.BIT
  BITDEFINE = 
  
  BITGET = 
  
  BITSET = 
  
  ; Use the current position for this element fetch.  %COUNT% is the reserved
  ; variable to specify the current location.
  BITCBDROPSET = 
  
  BITCBDROPGET = 
  
  ; Note the use of uppercase to denote the Property value.
  BITCBPROPSET = 
  
  BITCBPROPGET = 
  
  BITCLONESET = 
  
  BITTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.CHAR or java.types.VARCHAR
  CHARDEFINE = 
  
  CHARGET =
  
  CHARSET =
  
  CHARCBDROPSET = 
  
  CHARCBDROPGET = 
  
  CHARCBPROPSET = 
  
  CHARCBPROPGET = 
  
  CHARCLONESET = 
  
  CHARTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.DECIMAL or 
java.types.NUMERIC
  BIGDECIMALDEFINE = 
  
  BIGDECIMALGET =
  
  BIGDECIMALSET =
  
  BIGDECIMALCBDROPSET = 
  
  BIGDECIMALCBDROPGET = 
  
  BIGDECIMALCBPROPSET = 
  
  BIGDECIMALCBPROPGET = 
  
  BIGDECIMALCLONESET = 
  
  BIGDECIMALTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.TINYINT
  TINYINTDEFINE = 
  
  TINYINTGET =
  
  TINYINTSET = 
  
  TINYINTCBDROPSET = 
  
  TINYINTCBDROPGET = 
  
  TINYINTCBPROPSET = 
  
  TINYINTCBPROPGET = 
  
  TINYINTCLONESET = 
  
  TINYINTTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.SMALLINT
  SMALLINTDEFINE = 
  
  SMALLINTGET =
  
  SMALLINTSET = 
  
  SMALLINTCBDROPSET = 
  
  SMALLINTCBDROPGET = 
  
  SMALLINTCBPROPGET = 
  
  SMALLINTCBPROPSET = 
  
  SMALLINTCLONESET = 
  
  SMALLINTTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.INTEGER
  INTEGERDEFINE = 
  
  INTEGERGET = 
  
  INTEGERSET = 
  
  INTEGERCBDROPSET = 
  
  INTEGERCBDROPGET = 
  
  INTEGERCBPROPGET = 
  
  INTEGERCBPROPSET = 
  
  INTEGERCLONESET  = 
  
  INTEGERTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.BIGINT
  BIGINTDEFINE = 
  
  BIGINTGET =
  
  BIGINTSET =
  
  BIGINTCBDROPSET = 
  
  BIGINTCBDROPGET =
  
  BIGINTCBPROPGET = 
  
  BIGINTCBPROPSET = 
  
  BIGINTCLONESET = 
  
  BIGINTTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.TIMESTAMP
  TIMESTAMPDEFINE = 
  
  TIMESTAMPGET = 
  
  TIMESTAMPSET = 
  
  TIMESTAMPCBDROPSET = 
  
  TIMESTAMPCBDROPGET = 
  
  TIMESTAMPCBPROPGET = 
  
  TIMESTAMPCBPROPSET = 
  
  TIMESTAMPCLONESET  = 
  
  TIMESTAMPTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.TIME
  TIMEDEFINE = 
  
  TIMEGET = 
  
  TIMESET = 
  
  TIMECBDROPSET = 
  
  TIMECBDROPGET = 
  
  TIMECBPROPGET = 
  
  TIMECBPROPSET = 
  
  TIMECLONESET = 
  
  TIMETOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.REAL
  REALDEFINE =
  
  REALGET = 
  
  REALSET = 
  
  REALCBDROPSET = 
  
  REALCBDROPGET = 
  
  REALCBPROPGET = 
  
  REALCBPROPSET = 
  
  REALCLONESET = 
  
  REALTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.FLOAT
  FLOATDEFINE = 
  
  FLOATGET = 
  
  FLOATSET = 
  
  FLOATCBDROPSET = 
  
  FLOATCBDROPGET =
  
  FLOATCBPROPGET = 
  
  FLOATCBPROPSET = 
  
  FLOATCLONESET = 
  
  FLOATTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.DOUBLE
  DOUBLEDEFINE = 
  
  DOUBLEGET = 
  
  DOUBLESET = 
  
  DOUBLECBDROPSET = 
  
  DOUBLECBDROPGET =
  
  DOUBLECBPROPGET = 
  
  DOUBLECBPROPSET = 
  
  DOUBLECLONESET  = 
  
  DOUBLETOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.VARBINARY
  VARBINARYDEFINE = 
  
  VARBINARYGET = 
  
  VARBINARYSET = 
  
  VARBINARYCBDROPSET = 
  
  VARBINARYCBDROPGET = 
  
  VARBINARYCBPROPGET = 
  
  VARBINARYCBPROPSET = 
  
  VARBINARYCLONESET = 
  
  VARBINARYTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.LONGVARBINARY
  LONGVARBINARYDEFINE = 
  
  LONGVARBINARYGET = 
  
  LONGVARBINARYSET = 
  
  LONGVARBINARYCBDROPSET = 
  
  LONGVARBINARYCBDROPGET = 
  
  LONGVARBINARYCBPROPGET =
  
  LONGVARBINARYCBPROPSET = 
  
  LONGVARBINARYCLONESET = 
  
  LONGVARBINARYTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.LONGVARCHAR
  LONGVARCHARDEFINE = 
  
  LONGVARCHARGET = 
  
  LONGVARCHARSET = 
  
  LONGVARCHARCBDROPSET = 
  
  LONGVARCHARCBDROPGET = 
  
  LONGVARCHARCBPROPGET = 
  
  LONGVARCHARCBPROPSET = 
  
  LONGVARCHARCLONESET = 
  
  LONGVARCHARTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.DATE
  DATEDEFINE = 
  
  DATEGET = 
  
  DATESET = 
  
  DATECBDROPSET = 
  
  DATECBDROPGET = 
  
  DATECBPROPGET = 
  
  DATECBPROPSET = 
  
  DATECLONESET = 
  
  DATETOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.BINARY
  BINARYDEFINE = 
  
  BINARYGET = 
  
  BINARYSET = 
  
  BINARYCBDROPSET = 
  
  BINARYCBDROPGET = 
  
  BINARYCBPROPGET = 
  
  BINARYCBPROPSET = 
  
  BINARYCLONESET = 
  
  BINARYTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.OTHER
  UNKNOWNDEFINE = 
  
  UNKNOWNGET = 
  
  UNKNOWNSET = 
  
  UNKNOWNCBDROPSET = 
  
  UNKNOWNCBDROPGET = 
  
  UNKNOWNCBPROPGET = 
  
  UNKNOWNCBPROPSET = 
  
  UNKNOWNCLONESET = 
  
  UNKNOWNTOSTRINGSET = 
  
  ; If we have and ODBMS & CBProp, this adds in the clone code to clone the
  ; ODBMS specific information.
  COLCLONESET =
  
  ; If we have and ODBMS & CBProp, this adds in the toString code to toString the
  ; ODBMS specific information.
  COLTOSTRINGSET = 
  
  ; This ends the toString method.
  CLASSTOSTRING = 
  
  ; This tries to include all of the variables above the columns (such as ODBMS
  ; and CBProp variables).
  CLASSVARS = 
  
  ; If we have and ODBMS & CBProp, this adds the ODBMS variables to the 
  ; getPropObjectData method.
  LOIDPROPSET =
  
  ; If we have and ODBMS & CBProp, this adds the ODBMS variables to the 
  ; setPropObjectData method.
  LOIDPROPGET = 
  
  ; If we have and ODBMS & CBProp, this adds the ODBMS navigation variable to the 
  ; getPropObjectData method.
  NAVLOIDPROPSET = 
  
  ; If we have and ODBMS & CBProp, this adds the ODBMS navigation variable to the 
  ; setPropObjectData method.
  NAVLOIDPROPGET = 
  
  ; If we have and ODBMS & CBProp, this adds an ODBMS accessor method for the
  ; Logical Object ID method.
  LOIDGET = 
  
  ; If we have and ODBMS & CBProp, this adds an ODBMS accessor method for the
  ; Logical Object ID method.
  LOIDSET = 
  
  ; If we have and ODBMS & CBProp, this adds an ODBMS accessor method for the
  ; Logical Object ID navigation method.
  GETNAVLOID = 
  
  ; If we have and ODBMS & CBProp, this adds an ODBMS accessor method for the
  ; Logical Object ID navigation method.
  SETNAVLOID = 
  
  ; This is the method used to generate the clone() code - not used in EJBHOME.
  CLONESTRING = 
  
  ; This is the method used to generate the toString() code.
  TOSTRINGSTRING = 
  
  ; This is the method used to generate the CBDrop.setObjectData() code.
  DROPSETSTRING = 
  
  ; This is the method used to generate the CBDrop.getObjectData() code.
  DROPGETSTRING = 
  
  ; This is the method used to generate the CBProp.setPropObjectData() code.
  PROPSETSTRING = 
  
  ; This is the method used to generate the CBProp.getPropObjectData() code.
  PROPGETSTRING = 
  
  ; This comment is embedded in another comment within this file by using
  ; a <CBINCLUDE ODBMSCOMMENT>.  It provides a great example of how to
  ; use the <CBINCLUDE directive>
  ODBMSCOMMENT = 
  
  METHODNAV = 
  LINK1MDEFINE =
  LINK1MGET = 
  LINK1MINSERT = 
  LINK1MUPDATE = 
  LINK1MDELETE = 
  METHODNAV = 
  LINK11DEFINE = 
  LINK11GET = 
  LINK11INSERT = 
  LINK11UPDATE = 
  LINK11DELETE = 
  
  PKGPREFIX = <CBIF HASPACKAGE>%packagename%.</CBIF>
  
  PKGDIRPREFIX = <CBIF HASPACKAGE>%packagedirname%%fileseparator%</CBIF>
  
  PKGDIRPREFIXU = <CBIF HASPACKAGE>%packagedirnameunix%%fileseparatorunix%</CBIF>
  
  CLASSEND = <?xml version='1.0'?>%EOL%\
  <!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 
1.1//EN'  <CBIF 
DDLOCATION=local>'http://localhost:8080/dtds/ejb-jar_1_1.dtd'</CBIF><CBIFNOT 
DDLOCATION=local>'http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd'</CBIFNOT>>%EOL%\
  %EOL%\
  <ejb-jar>%EOL%\
  \t<description>%EOL%\
  \tThis ejb-jar file contains assembled enterprise beans that are part of%EOL%\
  \tThe %Classname% mapped Entity Bean.%EOL%\
  \t</description>%EOL%\
  %EOL%\
  \t<enterprise-beans>%EOL%\
  \t\t<entity>%EOL%\
  \t\t\t<description>%EOL%\
  \t\t\tThis section defines the CMP Entity Bean %Classname%%EOL%\
  \t\t\t</description>%EOL%\
  \t\t\t<ejb-name>%NEWBEANNAME%</ejb-name>%EOL%\
  \t\t\t<home>%ORIGHOME%</home>%EOL%\
  \t\t\t<remote>%ORIGINTERFACE%</remote>%EOL%\
  \t\t\t<ejb-class>%NEWBEAN%</ejb-class>%EOL%\
  \t\t\t<persistence-type>Bean</persistence-type>%EOL%\
  \t\t\t<prim-key-class>%ORIGPK%</prim-key-class>%EOL%\
  \t\t\t<reentrant>False</reentrant>%EOL%\
  \t\t\t%EOL%\
  \t\t\t<env-entry>%EOL%\
  \t\t\t<env-entry-name>cocosource.name</env-entry-name>%EOL%\
  \t\t\t<env-entry-type>java.lang.String</env-entry-type>%EOL%\
  \t\t\t<env-entry-value>thought.CocoBase.CocoPowderPlugin20</env-entry-value>%EOL%\
  \t\t\t</env-entry>%EOL%\
  \t\t\t<env-entry>%EOL%\
  \t\t\t<env-entry-name>cocosource.driver</env-entry-name>%EOL%\
  \t\t\t<env-entry-type>java.lang.String</env-entry-type>%EOL%\
  \t\t\t<env-entry-value>%dbdriver%</env-entry-value>%EOL%\
  \t\t\t</env-entry>%EOL%\
  \t\t\t<env-entry>%EOL%\
  \t\t\t<env-entry-name>cocosource.url</env-entry-name>%EOL%\
  \t\t\t<env-entry-type>java.lang.String</env-entry-type>%EOL%\
  
\t\t\t<env-entry-value>%dburl%;cocorep=configresource:/%ORIGBEANFILE%Config.properties:cocoprop=primarykey.lookup=false,jndiurl=java:comp/env/%jndiurl%<CBIFNOT
 
WLVERSION=VERSION_5.1_ServicePack4>:cocoplugin=thought.CocoBase.CocoWeblogic5</CBIFNOT></env-entry-value>%EOL%\
  \t\t\t</env-entry>%EOL%\
  \t\t\t<env-entry>%EOL%\
  \t\t\t<env-entry-name>cocosource.user</env-entry-name>%EOL%\
  \t\t\t<env-entry-type>java.lang.String</env-entry-type>%EOL%\
  \t\t\t<env-entry-value><CBIF %dbuser%>%dbuser%</CBIF><CBIFNOT 
%dbuser%>NONE</CBIFNOT></env-entry-value>%EOL%\
  \t\t\t</env-entry>%EOL%\
  \t\t\t<env-entry>%EOL%\
  \t\t\t<env-entry-name>cocosource.password</env-entry-name>%EOL%\
  \t\t\t<env-entry-type>java.lang.String</env-entry-type>%EOL%\
  \t\t\t<env-entry-value><CBIF %dbpassword%>%dbpassword%</CBIF><CBIFNOT 
%dbpassword%>NONE</CBIFNOT></env-entry-value>%EOL%\
  \t\t\t</env-entry>%EOL%\
  \t\t\t<env-entry>%EOL%\
  \t\t\t<env-entry-name>cocosource.autoclose</env-entry-name>%EOL%\
  \t\t\t<env-entry-type>java.lang.String</env-entry-type>%EOL%\
  \t\t\t<env-entry-value>true</env-entry-value>%EOL%\
  \t\t\t</env-entry>%EOL%\
  \t\t\t<env-entry>%EOL%\
  \t\t\t<env-entry-name>cocosource.autotrans</env-entry-name>%EOL%\
  \t\t\t<env-entry-type>java.lang.String</env-entry-type>%EOL%\
  \t\t\t<env-entry-value>false</env-entry-value>%EOL%\
  \t\t\t</env-entry>%EOL%\
  \t\t\t<env-entry>%EOL%\
  \t\t\t<env-entry-name>cocosource.debug</env-entry-name>%EOL%\
  \t\t\t<env-entry-type>java.lang.String</env-entry-type>%EOL%\
  \t\t\t<env-entry-value>%debug%</env-entry-value>%EOL%\
  \t\t\t</env-entry>%EOL%\
  \t\t\t<env-entry>%EOL%\
  \t\t\t<env-entry-name>cocosource.homefactory</env-entry-name>%EOL%\
  \t\t\t<env-entry-type>java.lang.String</env-entry-type>%EOL%\
  \t\t\t<env-entry-value>thought.CocoBase.WeblogicHomeFactory</env-entry-value>%EOL%\
  \t\t\t</env-entry>%EOL%\
  \t\t\t<env-entry>%EOL%\
  \t\t\t<env-entry-name>cocosource.cachefactory</env-entry-name>%EOL%\
  \t\t\t<env-entry-type>java.lang.String</env-entry-type>%EOL%\
  \t\t\t<env-entry-value>true</env-entry-value>%EOL%\
  \t\t\t</env-entry>%EOL%\
  \t\t\t<resource-ref>%EOL%\
  \t\t\t\t<res-ref-name>%jndiurl%</res-ref-name>%EOL%\
  \t\t\t\t<res-type>javax.sql.DataSource</res-type>%EOL%\
  \t\t\t<res-auth>Container</res-auth>%EOL%\
  </resource-ref>%EOL%\
  \t\t</entity>%EOL%\
  \t</enterprise-beans>%EOL%\
  \t<assembly-descriptor>%EOL%\
  \t\t<container-transaction>%EOL%\
  \t\t\t<method>%EOL%\
  \t\t\t\t<ejb-name>%NEWBEANNAME%</ejb-name>%EOL%\
  \t\t\t\t<method-intf>Remote</method-intf>%EOL%\
  \t\t\t\t<method-name>*</method-name>%EOL%\
  \t\t\t</method>%EOL%\
  \t\t\t<trans-attribute>Required</trans-attribute>%EOL%\
  \t\t</container-transaction>%EOL%\
  \t</assembly-descriptor>%EOL%\
  %EOL%\
  </ejb-jar>%EOL%
  
  
  
  
  1.1                  contrib/cocobase/conf/JBOSS2ALTCMPDDPROP.properties
  
  Index: JBOSS2ALTCMPDDPROP.properties
  ===================================================================
  ;
  ; This is the template file used to generate new java programming files
  ;
  ; The following variables are guaranteed to be provided by the CocoBase
  ; code generation runtime (note the variables are case sensitive!)
  ;
  ; HASPACKAGE - If we have a packagename prefix.
  ; packagename - The packagename (if present), such as com.thought
  ; Classname - The class name (such as Employee)
  ; supportCBDrop - If we wish to use the Properties based CBDrop interface.
  ; supportCBProp - If we wish to use the Properties based CBProp interface.
  ; supportODBMS - If we wish to generate code with ODBMS navigation.
  ; supportODBMSandCBProp - If we've selected both ODBMS and CBProp flags.
  ; EOL - The End of line character to be used when generating the java source
  ;       code.  This is OS dependent.
  ; supportTransObj - If we support using a Transaction object in the code
  ;                   generation for the 1-1, 1-M or M-M code.
  ; Column - The Java column name to use in constructin methods such as getPhone
  ; column - The Java column name (such as phone or empSkill);
  ; COLUMN - The Map's column name (such as "PHONE" or "EMP_SKILL")
  ; COUNT - current column count
  ; Targetclass - used in 1-1,1-M & M-M - The target class in the relationship
  ; Targetcolumn - used in 1-1,1-M & M-M - The target column in the relationship
  ; clonelist - The list of column attributes in the clone() method.
  ; tostringlist - The list of column attributes in the clone() method.
  ; dropsetlist - The code for the columns in the setObjectData() method.
  ; dropgetlist - The code for the columns in the getObjectData() method.
  ; propsetlist - The code for the columns in the setPropObjectData() method.
  ; propgetlist - The code for the columns in the getPropObjectData() method.
  ; iskey - Notes whether the column is part of the primary key.
  
  ; If we have a package, then insert the packing name string.
  PACKAGEINFO = 
  
  ; The imports for each class generated.
  IMPORTS = 
  
  ; The Class string to start the new java class with.
  CLASSBEGIN = 
  
  ; The comment used for each setAttr() method
  SETCOMMENT = 
  
  ; The comment used for each getAttr() method
  GETCOMMENT = 
  
  ; To appear just before the list of instance variables.
  CLASSVARCOMMENT = 
  
  ; The code necessary to define an attribute as java.types.BIT
  BITDEFINE = 
  
  BITGET = 
  
  BITSET = 
  
  ; Use the current position for this element fetch.  %COUNT% is the reserved
  ; variable to specify the current location.
  BITCBDROPSET = 
  
  BITCBDROPGET = 
  
  ; Note the use of uppercase to denote the Property value.
  BITCBPROPSET = 
  
  BITCBPROPGET = 
  
  BITCLONESET = 
  
  BITTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.CHAR or java.types.VARCHAR
  CHARDEFINE = 
  
  CHARGET =
  
  CHARSET =
  
  CHARCBDROPSET = 
  
  CHARCBDROPGET = 
  
  CHARCBPROPSET = 
  
  CHARCBPROPGET = 
  
  CHARCLONESET = 
  
  CHARTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.DECIMAL or 
java.types.NUMERIC
  BIGDECIMALDEFINE = 
  
  BIGDECIMALGET =
  
  BIGDECIMALSET =
  
  BIGDECIMALCBDROPSET = 
  
  BIGDECIMALCBDROPGET = 
  
  BIGDECIMALCBPROPSET = 
  
  BIGDECIMALCBPROPGET = 
  
  BIGDECIMALCLONESET = 
  
  BIGDECIMALTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.TINYINT
  TINYINTDEFINE = 
  
  TINYINTGET =
  
  TINYINTSET = 
  
  TINYINTCBDROPSET = 
  
  TINYINTCBDROPGET = 
  
  TINYINTCBPROPSET = 
  
  TINYINTCBPROPGET = 
  
  TINYINTCLONESET = 
  
  TINYINTTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.SMALLINT
  SMALLINTDEFINE = 
  
  SMALLINTGET =
  
  SMALLINTSET = 
  
  SMALLINTCBDROPSET = 
  
  SMALLINTCBDROPGET = 
  
  SMALLINTCBPROPGET = 
  
  SMALLINTCBPROPSET = 
  
  SMALLINTCLONESET = 
  
  SMALLINTTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.INTEGER
  INTEGERDEFINE = 
  
  INTEGERGET = 
  
  INTEGERSET = 
  
  INTEGERCBDROPSET = 
  
  INTEGERCBDROPGET = 
  
  INTEGERCBPROPGET = 
  
  INTEGERCBPROPSET = 
  
  INTEGERCLONESET  = 
  
  INTEGERTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.BIGINT
  BIGINTDEFINE = 
  
  BIGINTGET =
  
  BIGINTSET =
  
  BIGINTCBDROPSET = 
  
  BIGINTCBDROPGET =
  
  BIGINTCBPROPGET = 
  
  BIGINTCBPROPSET = 
  
  BIGINTCLONESET = 
  
  BIGINTTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.TIMESTAMP
  TIMESTAMPDEFINE = 
  
  TIMESTAMPGET = 
  
  TIMESTAMPSET = 
  
  TIMESTAMPCBDROPSET = 
  
  TIMESTAMPCBDROPGET = 
  
  TIMESTAMPCBPROPGET = 
  
  TIMESTAMPCBPROPSET = 
  
  TIMESTAMPCLONESET  = 
  
  TIMESTAMPTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.TIME
  TIMEDEFINE = 
  
  TIMEGET = 
  
  TIMESET = 
  
  TIMECBDROPSET = 
  
  TIMECBDROPGET = 
  
  TIMECBPROPGET = 
  
  TIMECBPROPSET = 
  
  TIMECLONESET = 
  
  TIMETOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.REAL
  REALDEFINE =
  
  REALGET = 
  
  REALSET = 
  
  REALCBDROPSET = 
  
  REALCBDROPGET = 
  
  REALCBPROPGET = 
  
  REALCBPROPSET = 
  
  REALCLONESET = 
  
  REALTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.FLOAT
  FLOATDEFINE = 
  
  FLOATGET = 
  
  FLOATSET = 
  
  FLOATCBDROPSET = 
  
  FLOATCBDROPGET =
  
  FLOATCBPROPGET = 
  
  FLOATCBPROPSET = 
  
  FLOATCLONESET = 
  
  FLOATTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.DOUBLE
  DOUBLEDEFINE = 
  
  DOUBLEGET = 
  
  DOUBLESET = 
  
  DOUBLECBDROPSET = 
  
  DOUBLECBDROPGET =
  
  DOUBLECBPROPGET = 
  
  DOUBLECBPROPSET = 
  
  DOUBLECLONESET  = 
  
  DOUBLETOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.VARBINARY
  VARBINARYDEFINE = 
  
  VARBINARYGET = 
  
  VARBINARYSET = 
  
  VARBINARYCBDROPSET = 
  
  VARBINARYCBDROPGET = 
  
  VARBINARYCBPROPGET = 
  
  VARBINARYCBPROPSET = 
  
  VARBINARYCLONESET = 
  
  VARBINARYTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.LONGVARBINARY
  LONGVARBINARYDEFINE = 
  
  LONGVARBINARYGET = 
  
  LONGVARBINARYSET = 
  
  LONGVARBINARYCBDROPSET = 
  
  LONGVARBINARYCBDROPGET = 
  
  LONGVARBINARYCBPROPGET =
  
  LONGVARBINARYCBPROPSET = 
  
  LONGVARBINARYCLONESET = 
  
  LONGVARBINARYTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.LONGVARCHAR
  LONGVARCHARDEFINE = 
  
  LONGVARCHARGET = 
  
  LONGVARCHARSET = 
  
  LONGVARCHARCBDROPSET = 
  
  LONGVARCHARCBDROPGET = 
  
  LONGVARCHARCBPROPGET = 
  
  LONGVARCHARCBPROPSET = 
  
  LONGVARCHARCLONESET = 
  
  LONGVARCHARTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.DATE
  DATEDEFINE = 
  
  DATEGET = 
  
  DATESET = 
  
  DATECBDROPSET = 
  
  DATECBDROPGET = 
  
  DATECBPROPGET = 
  
  DATECBPROPSET = 
  
  DATECLONESET = 
  
  DATETOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.BINARY
  BINARYDEFINE = 
  
  BINARYGET = 
  
  BINARYSET = 
  
  BINARYCBDROPSET = 
  
  BINARYCBDROPGET = 
  
  BINARYCBPROPGET = 
  
  BINARYCBPROPSET = 
  
  BINARYCLONESET = 
  
  BINARYTOSTRINGSET = 
  
  ; The code necessary to define an attribute as java.types.OTHER
  UNKNOWNDEFINE = 
  
  UNKNOWNGET = 
  
  UNKNOWNSET = 
  
  UNKNOWNCBDROPSET = 
  
  UNKNOWNCBDROPGET = 
  
  UNKNOWNCBPROPGET = 
  
  UNKNOWNCBPROPSET = 
  
  UNKNOWNCLONESET = 
  
  UNKNOWNTOSTRINGSET = 
  
  ; If we have and ODBMS & CBProp, this adds in the clone code to clone the
  ; ODBMS specific information.
  COLCLONESET =
  
  ; If we have and ODBMS & CBProp, this adds in the toString code to toString the
  ; ODBMS specific information.
  COLTOSTRINGSET = 
  
  ; This ends the toString method.
  CLASSTOSTRING = 
  
  ; This tries to include all of the variables above the columns (such as ODBMS
  ; and CBProp variables).
  CLASSVARS = 
  
  ; If we have and ODBMS & CBProp, this adds the ODBMS variables to the 
  ; getPropObjectData method.
  LOIDPROPSET =
  
  ; If we have and ODBMS & CBProp, this adds the ODBMS variables to the 
  ; setPropObjectData method.
  LOIDPROPGET = 
  
  ; If we have and ODBMS & CBProp, this adds the ODBMS navigation variable to the 
  ; getPropObjectData method.
  NAVLOIDPROPSET = 
  
  ; If we have and ODBMS & CBProp, this adds the ODBMS navigation variable to the 
  ; setPropObjectData method.
  NAVLOIDPROPGET = 
  
  ; If we have and ODBMS & CBProp, this adds an ODBMS accessor method for the
  ; Logical Object ID method.
  LOIDGET = 
  
  ; If we have and ODBMS & CBProp, this adds an ODBMS accessor method for the
  ; Logical Object ID method.
  LOIDSET = 
  
  ; If we have and ODBMS & CBProp, this adds an ODBMS accessor method for the
  ; Logical Object ID navigation method.
  GETNAVLOID = 
  
  ; If we have and ODBMS & CBProp, this adds an ODBMS accessor method for the
  ; Logical Object ID navigation method.
  SETNAVLOID = 
  
  ; This is the method used to generate the clone() code - not used in EJBHOME.
  CLONESTRING = 
  
  ; This is the method used to generate the toString() code.
  TOSTRINGSTRING = 
  
  ; This is the method used to generate the CBDrop.setObjectData() code.
  DROPSETSTRING = 
  
  ; This is the method used to generate the CBDrop.getObjectData() code.
  DROPGETSTRING = 
  
  ; This is the method used to generate the CBProp.setPropObjectData() code.
  PROPSETSTRING = 
  
  ; This is the method used to generate the CBProp.getPropObjectData() code.
  PROPGETSTRING = 
  
  ; This comment is embedded in another comment within this file by using
  ; a <CBINCLUDE ODBMSCOMMENT>.  It provides a great example of how to
  ; use the <CBINCLUDE directive>
  ODBMSCOMMENT = 
  
  METHODNAV = 
  LINK1MDEFINE =
  LINK1MGET = 
  LINK1MINSERT = 
  LINK1MUPDATE = 
  LINK1MDELETE = 
  METHODNAV = 
  LINK11DEFINE = 
  LINK11GET = 
  LINK11INSERT = 
  LINK11UPDATE = 
  LINK11DELETE = 
  
  PKGPREFIX = <CBIF HASPACKAGE>%packagename%.</CBIF>
  
  PKGDIRPREFIX = <CBIF HASPACKAGE>%packagedirname%%fileseparator%</CBIF>
  
  PKGDIRPREFIXU = <CBIF HASPACKAGE>%packagedirnameunix%%fileseparatorunix%</CBIF>
  
  CLASSEND =<?xml version="1.0" encoding="Cp1252"?>%EOL%\
  <jboss>%EOL%\
  \t<resource-managers>%EOL%\
  \t\t<resource-manager res-class="org.jboss.ejb.deployment.JDBCResource">%EOL%\
  \t\t\t<res-name>%jndiurl%</res-name>%EOL%\
  \t\t\t<res-jndi-name>%confDataSource%</res-jndi-name>%EOL%\
  \t\t</resource-manager>%EOL%\
  \t</resource-managers>%EOL%\
  </jboss>%EOL%
  
  
  
  
  1.1                  contrib/cocobase/conf/CocoCmp.properties
  
  Index: CocoCmp.properties
  ===================================================================
  TARGETDIR = beansrc
  CMPTARGETS = Gemstone/J,\
  iPlanet_4,\
  iPlanet_6,\
  Jonas,\
  Sybase_EAServer_EJB_1.0,\
  Sybase_EAServer_EJB_1.1,\
  Voyager,\
  Weblogic4,\
  WeblogicExpress5,\
  JRun,\
  jBoss
  DEBUG = false
  EDITABLEPROPERTIES = cocodriver,dbdriver,dbpassword,dburl,dbuser,Mapname
  Gemstone/J_INTERFACE = resources.EJBCMPINT
  Gemstone/J_HOME = resources.EJBCMPHOME
  Gemstone/J_DESCRIPTOR = resources.GemstoneCMPDDPROP
  Gemstone/J_DESCRIPTOR_EXT = .prop
  Gemstone/J_MANIFEST = resources.GemstoneCMPMF
  Gemstone/J_ENVIRONMENT = resources.GemstoneCMPENV
  Gemstone/J_STATEOBJ = resources.GenState
  Gemstone/J_BEAN = resources.EJBCMP
  Gemstone/J_PROPERTIES = resources.GemstoneProps
  Gemstone/J_BUILD_LIBS =
  Gemstone/J_BUILD_PROPS =
  Gemstone/J_DEPLOY_DIR =
  Gemstone/J_SERVER_DIR =
  Gemstone/J_deployer = com.thought.CocoAdmin.CmpInstaller.GemstoneDeployer
  Gemstone/J_CREATE_CLASSES = 
  Weblogic4_INTERFACE = resources.EJBCMPINT
  Weblogic4_HOME = resources.EJBCMPHOME
  Weblogic4_DESCRIPTOR = resources.WeblogicCMPDDPROP
  Weblogic4_DESCRIPTOR_EXT = .prop
  Weblogic4_MANIFEST = resources.WeblogicCMPMF
  Weblogic4_ENVIRONMENT = resources.WeblogicCMPENV
  Weblogic4_STATEOBJ = resources.GenState
  Weblogic4_BEAN = resources.EJBCMP
  Weblogic4_PROPERTIES = resources.WeblogicProps
  Weblogic4_BUILD_LIBS = /weblogic/classes;/weblogic/lib/weblogicaux.jar
  Weblogic4_BUILD_PROPS = 
  Weblogic4_DEPLOY_DIR = c:\\weblogic\\myserver
  Weblogic4_SERVER_DIR = c:\\weblogic
  Weblogic4_deployer = com.thought.CocoAdmin.CmpInstaller.WeblogicDeployer
  Weblogic4_CREATE_CLASSES = 
  WeblogicExpress5_INTERFACE = resources.EJBCMPINT
  WeblogicExpress5_HOME = resources.EJBCMPHOME
  WeblogicExpress5_DESCRIPTOR = resources.WeblogicExp5CMPDDPROP
  WeblogicExpress5_DESCRIPTOR_ALT = resources.WeblogicExp5ALTCMPDDPROP
  WeblogicExpress5_DESCRIPTOR_EXT = .xml
  WeblogicExpress5_MANIFEST = resources.WeblogicCMPMF
  WeblogicExpress5_ENVIRONMENT = resources.WeblogicCMPENV
  WeblogicExpress5_STATEOBJ = resources.GenState
  WeblogicExpress5_BEAN = resources.WeblogicExp5EJBCMP
  WeblogicExpress5_PROPERTIES = resources.WeblogicExpress5Props
  WeblogicExpress5_BUILD_LIBS = /weblogic/classes;/weblogic/lib/weblogicaux.jar
  WeblogicExpress5_BUILD_PROPS = 
  WeblogicExpress5_DEPLOY_DIR = c:\\weblogic\\myserver
  WeblogicExpress5_SERVER_DIR = c:\\weblogic
  WeblogicExpress5_deployer = com.thought.CocoAdmin.CmpInstaller.WeblogicExp5Deployer
  WeblogicExpress5_CREATE_CLASSES = 
  Sybase_EAServer_EJB_1.0_INTERFACE = resources.EJBCMPINT
  Sybase_EAServer_EJB_1.0_HOME = resources.EJBCMPHOME
  Sybase_EAServer_EJB_1.0_DESCRIPTOR = resources.JaguarCMPDDPROP
  Sybase_EAServer_EJB_1.0_DESCRIPTOR_EXT = .xml
  Sybase_EAServer_EJB_1.0_MANIFEST = resources.JaguarCMPMF
  Sybase_EAServer_EJB_1.0_ENVIRONMENT = resources.JaguarCMPENV
  Sybase_EAServer_EJB_1.0_STATEOBJ = resources.GenState
  Sybase_EAServer_EJB_1.0_BEAN = resources.EJBCMP
  Sybase_EAServer_EJB_1.0_PROPERTIES = resources.JaguarProps
  Sybase_EAServer_EJB_1.0_BUILD_LIBS = 
  Sybase_EAServer_EJB_1.0_BUILD_PROPS = 
  Sybase_EAServer_EJB_1.0_DEPLOY_DIR = .
  Sybase_EAServer_EJB_1.0_SERVER_DIR = .
  Sybase_EAServer_EJB_1.0_deployer = com.thought.CocoAdmin.CmpInstaller.JaguarDeployer
  Sybase_EAServer_EJB_1.0_CREATE_CLASSES = 
  Sybase_EAServer_EJB_1.1_INTERFACE = resources.EJBCMPINT
  Sybase_EAServer_EJB_1.1_HOME = resources.EJBCMPHOME
  Sybase_EAServer_EJB_1.1_DESCRIPTOR = resources.JaguarCMPDDPROP
  Sybase_EAServer_EJB_1.1_DESCRIPTOR_EXT = .xml
  Sybase_EAServer_EJB_1.1_MANIFEST = resources.JaguarCMPMF_1_1
  Sybase_EAServer_EJB_1.1_ENVIRONMENT = resources.JaguarCMPENV
  Sybase_EAServer_EJB_1.1_STATEOBJ = resources.GenState
  Sybase_EAServer_EJB_1.1_BEAN = resources.EJBCMP_1_1
  Sybase_EAServer_EJB_1.1_PROPERTIES = resources.JaguarProps
  Sybase_EAServer_EJB_1.1_BUILD_LIBS = 
  Sybase_EAServer_EJB_1.1_BUILD_PROPS = 
  Sybase_EAServer_EJB_1.1_DEPLOY_DIR = .
  Sybase_EAServer_EJB_1.1_SERVER_DIR = .
  Sybase_EAServer_EJB_1.1_deployer = 
com.thought.CocoAdmin.CmpInstaller.Jaguar11Deployer
  Sybase_EAServer_EJB_1.1_CREATE_CLASSES = 
  Voyager_INTERFACE = resources.EJBCMPINT
  Voyager_HOME = resources.EJBCMPHOME
  Voyager_DESCRIPTOR = resources.VoyagerCMPDDPROP
  Voyager_DESCRIPTOR_EXT = .xml
  Voyager_MANIFEST = resources.VoyagerCMPMF
  Voyager_ENVIRONMENT = resources.VoyagerCMPENV
  Voyager_STATEOBJ = resources.GenState
  Voyager_BEAN = resources.EJBCMP
  Voyager_PROPERTIES = resources.VoyagerProps
  Voyager_BUILD_LIBS = 
  Voyager_BUILD_PROPS = 
  Voyager_DEPLOY_DIR = .
  Voyager_SERVER_DIR = .
  Voyager_deployer = com.thought.CocoAdmin.CmpInstaller.VoyagerDeployer
  Voyager_CREATE_CLASSES = 
  Jonas_INTERFACE = resources.EJBCMPINT
  Jonas_HOME = resources.EJBCMPHOME
  Jonas_DESCRIPTOR = resources.JonasCMPDDPROP
  Jonas_DESCRIPTOR_EXT = .txt
  Jonas_MANIFEST = resources.JonasCMPMF
  Jonas_ENVIRONMENT = resources.JonasCMPENV
  Jonas_STATEOBJ = resources.GenState
  Jonas_BEAN = resources.EJBCMP
  Jonas_PROPERTIES = resources.JonasProps
  Jonas_BUILD_LIBS = 
  Jonas_BUILD_PROPS = 
  Jonas_DEPLOY_DIR = .
  Jonas_SERVER_DIR = .
  Jonas_deployer = com.thought.CocoAdmin.CmpInstaller.JonasDeployer
  Jonas_CREATE_CLASSES = 
  iPlanet_4_INTERFACE = resources.EJBCMPINT
  iPlanet_4_HOME = resources.EJBCMPHOME
  iPlanet_4_DESCRIPTOR = resources.NetscapeCMPDDPROP
  iPlanet_4_DESCRIPTOR_EXT = .xml
  iPlanet_4_MANIFEST = resources.NetscapeCMPMF
  iPlanet_4_ENVIRONMENT = resources.NetscapeCMPENV
  iPlanet_4_STATEOBJ = resources.GenState
  iPlanet_4_BEAN = resources.EJBCMP
  iPlanet_4_PROPERTIES = resources.NetscapeProps
  iPlanet_4_BUILD_LIBS = 
c:\\netscape\\server4\\nas\\lib\\java\\kfcjdk11.jar;c:\\netscape\\server4\\nas\\lib\\javax.jar;c:\\netscape\\server4\\nas\\lib\\classes.zip
  iPlanet_4_BUILD_PROPS = GUID
  iPlanet_4_DEPLOY_DIR = c:\\netscape\\server4\\nas\\apps
  iPlanet_4_SERVER_DIR = c:\\netscape\\server4\\nas
  iPlanet_4_deployer = com.thought.CocoAdmin.CmpInstaller.NetscapeDeployer
  iPlanet_4_CREATE_CLASSES = 
  iPlanet_6_INTERFACE = resources.EJBCMPINT
  iPlanet_6_HOME = resources.EJBCMPHOME
  iPlanet_6_STATEOBJ = resources.GenState
  iPlanet_6_DESCRIPTOR = resources.iPlanet_6_CMPDDPROP
  iPlanet_6_DESCRIPTOR_EXT = .xml
  iPlanet_6_IPLANET_DESCRIPTOR = resources.iPlanet_6_CMPIDDPROP
  iPlanet_6_IPLANET_DESCRIPTOR_SUFFIX = IDD
  iPlanet_6_IPLANET_DESCRIPTOR_EXT = .xml
  iPlanet_6_MANIFEST = resources.iPlanet_6_CMPMF
  iPlanet_6_APPLICATION = resources.iPlanet_6_CMPAPP
  iPlanet_6_APPLICATION_SUFFIX = APP
  iPlanet_6_APPLICATION_EXT = .xml
  iPlanet_6_ENVIRONMENT = resources.NetscapeCMPENV
  iPlanet_6_BEAN = resources.iPlanet_6_EJBCMP
  iPlanet_6_PROPERTIES = resources.iPlanet_6Props
  iPlanet_6_BUILD_LIBS = 
D:\\iPlanet\\ias6\\ias\\lib\\java\\kfcjdk11.jar;D:\\iPlanet\\ias6\\ias\\lib\\javax.jar;D:\\iPlanet\\ias6\\ias\\lib\\classes.zip
  iPlanet_6_BUILD_PROPS = GUID
  iPlanet_6_DEPLOY_DIR = D:\\iPlanet\\ias6\\ias\\APPS
  iPlanet_6_SERVER_DIR = D:\\iPlanet\\ias6\\ias
  iPlanet_6_deployer = com.thought.CocoAdmin.CmpInstaller.NetscapeAS6Deployer
  iPlanet_6_CREATE_CLASSES = IPLANET_DESCRIPTOR, APPLICATION
  JRun_INTERFACE = resources.EJBCMPINT
  JRun_HOME = resources.EJBCMPHOME
  JRun_STATEOBJ = resources.GenState
  JRun_DESCRIPTOR = resources.JRun_CMPDDPROP
  JRun_DESCRIPTOR_EXT = .properties
  JRun_EJIPT_DESCRIPTOR = resources.WeblogicExp5CMPDDPROP
  JRun_EJIPT_DESCRIPTOR_SUFFIX = IDD
  JRun_EJIPT_DESCRIPTOR_EXT = .xml
  JRun_DEPLOY_PROP = resources.JRun_CMPDEPLOY
  JRun_DEPLOY_PROP_SUFFIX = Deploy
  JRun_DEPLOY_PROP_EXT = .properties
  JRun_DEFAULT_PROP = resources.JRun_CMPDEFAULT
  JRun_DEFAULT_PROP_SUFFIX = Default
  JRun_DEFAULT_PROP_EXT = .properties
  JRun_MANIFEST = resources.JRun_CMPMF
  JRun_ENVIRONMENT = resources.JRunCMPENV
  JRun_BEAN = resources.EJBCMP
  JRun_PROPERTIES = resources.JRun_Props
  JRun_BUILD_LIBS = D:\\Allaire\\JRun\\lib\\ejipt.jar;\
  D:\\Allaire\\JRun\\lib\\ejipt_ejbeans.jar;\
  D:\\Allaire\\JRun\\lib\\ext\\ejb.jar;\
  D:\\Allaire\\JRun\\lib\\ext\\jms.jar;\
  D:\\Allaire\\JRun\\lib\\ext\\jndi.jar;\
  D:\\Allaire\\JRun\\lib\\ext\\jta.jar;\
  D:\\Allaire\\JRun\\lib\\ext\\jdbc.jar;\
  D:\\Allaire\\JRun\\lib\\ext\\servlet.jar;\
  D:\\Allaire\\JRun\\lib\\ejipt_tools.jar;\
  D:\\Allaire\\JRun\\lib\\ext\\parser.jar
  JRun_DEPLOY_DIR = D:\\Allaire\\JRun\\servers\\default\\deploy
  JRun_SERVER_DIR = D:\\Allaire\\JRun\\
  JRun_CMP_DEBUG = false
  JRun_BUILD_PROPS = DEPLOY_DIR, SERVER_DIR, SERVER, PORT, HOME_PORT, EJIPT_USER, 
EJIPT_PASSWORD, EJIPT_ROLE
  JRun_deployer = com.thought.CocoAdmin.CmpInstaller.JRunDeployer
  JRun_CREATE_CLASSES = DEPLOY_PROP, DEFAULT_PROP, EJIPT_DESCRIPTOR
  jBoss_INTERFACE = resources.EJBCMPINT
  jBoss_HOME = resources.EJBCMPHOME
  jBoss_DESCRIPTOR = resources.WeblogicExp5CMPDDPROP
  jBoss_DESCRIPTOR_ALT = resources.WeblogicExp5ALTCMPDDPROP
  jBoss_DESCRIPTOR_EXT = .xml
  jBoss_MANIFEST = resources.WeblogicCMPMF
  jBoss_ENVIRONMENT = resources.WeblogicCMPENV
  jBoss_STATEOBJ = resources.GenState
  jBoss_BEAN = resources.WeblogicExp5EJBCMP
  jBoss_PROPERTIES = resources.WeblogicExpress5Props
  jBoss_BUILD_LIBS = /weblogic/classes;/weblogic/lib/weblogicaux.jar
  jBoss_BUILD_PROPS = 
  jBoss_DEPLOY_DIR = d:\\weblogic\\myserver
  jBoss_SERVER_DIR = d:\\weblogic
  jBoss_deployer = org.jboss.cocobase.JBoss2Deployer
  jBoss_CREATE_CLASSES = 
  
  
  

Reply via email to