From: Vance K. <va...@us...> - 2006-03-16 15:27:42
|
User: vancek Date: 06/03/16 07:27:40 Modified: andromda-ejb3/src/main/resources/META-INF/andromda profile.xml Log: refactored LOB stereotype to LOB_TYPE tagged value element definition Revision Changes Path 1.25 +18 -14 cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/profile.xml Index: profile.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/profile.xml,v retrieving revision 1.24 retrieving revision 1.25 diff -u -w -r1.24 -r1.25 --- profile.xml 16 Mar 2006 02:11:58 -0000 1.24 +++ profile.xml 16 Mar 2006 15:27:40 -0000 1.25 @@ -223,20 +223,6 @@ Service Operation </appliedOnElement> </element> - <element name="LOB"> - <documentation> - Specifies whether the entity attribute is - defined as either a large binary or character - type. - BLOB fields represent Byte[] or Serializable types. - CLOB fiels represent char[], Character[] or String - types. - </documentation> - <value>LOB</value> - <appliedOnElement> - Entity Attribute - </appliedOnElement> - </element> <element name="RESULT_TYPE_FIRST"> <documentation> Specifies the finder method parameter @@ -814,6 +800,24 @@ <value>list</value> </allowedValues> </element> + <element name="LOB_TYPE"> + <documentation> + Override the entity attribute type where + the property is defined as either a large + binary or character type via datatype::Clob or + datatype::Blob respectively. + BLOB fields represent Byte[] or Serializable types. + CLOB fiels represent char[], Character[] or String + types. + Make sure to define the fully qualified type + name for the tagged value. + </documentation> + <value>@andromda.persistence.lob.type</value> + <appliedOnElement> + Entity Attribute of Type datatype::Clob or + datatype::Blob + </appliedOnElement> + </element> <element name="SERVICE_TYPE"> <documentation> Used at the class level of a service bean to |