From: Vance K. <va...@us...> - 2006-02-06 04:17:29
|
User: vancek Date: 06/02/05 20:17:23 Added: andromda-ejb3/src/site/xdoc howto.xml Log: initial revision Revision Changes Path 1.1 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== <?xml version="1.0" encoding="iso-8859-1"?> <document> <properties> <author email="va...@us...">Vance Karimi</author> <title>AndroMDA - EJB3 - HowTo</title> </properties> <body> <section name="Modeling example"> <p class="highlight"> If you want to know more about how to model your application using the <a href="http://java.sun.com/products/ejb/docs.html">EJB 3.0</a> cartridge with AndroMDA, you have arrived at the right place; step-by-step we will work through an example showing the cartridge's features. Read on for more information. </p> <p> The AndroMDA EJB3 cartridge focuses on the persistence and business tier only. The presentation tier can be handled in AndroMDA as well, but for that we recommend using the <a href="../andromda-bpm4struts-cartridge/index.html">Bpm4Struts</a> cartridge. </p> <p> In this how-to we will cover the following topics: <ul> <li> <a href="howto1.html">Entities</a> <ul> <li><a href="howto1.html#Entity_Operations">Entity Operations</a></li> <li><a href="howto1.html#Entity_Relation_Table">Entity Relation Table</a></li> <li><a href="howto1.html#Primary_Key_Identifiers">Primary Key Identifier</a></li> <li><a href="howto1.html#Unique_Attributes">Unique Attributes</a></li> <li><a href="howto1.html#Attribute_Fetch_Type">Attribute Fetch Type</a></li> <li><a href="howto1.html#Transient_Attribute">Transient Attribute</a></li> <li><a href="howto1.html#Version_Attribute">Version Attribute</a></li> <li><a href="howto1.html#Attribute_Multiplicity">Attribute Multiplicity</a></li> <li><a href="howto1.html#Constant_Attribute">Constant Attribute</a></li> <li><a href="howto1.html#Nullable_Parameters">Nullable Parameters</a></li> <li><a href="howto1.html#LOB_CLOB_Attribute">LOB/CLOB Attributes</a></li> <li><a href="howto1.html#Column_Specifics">Column Specifics</a></li> <li><a href="howto1.html#Listener_Callback">Listener Callback</a></li> </ul> </li> <li> <a href="howto2.html">Relationships</a> <ul> <li><a href="howto2.html#Cascading">Cascading</a></li> <li><a href="howto2.html#Fetch_Type">Fetch Type</a></li> <li><a href="howto2.html#Ordering_Collection_Valued_Association">Ordering Collection Valued Association</a></li> <li><a href="howto2.html#Join_Table_Many_To_Many">Join Table for Many-To-Many Relationship</a></li> <li><a href="howto2.html#Aggregation_Composition">Aggregation and Composition</a></li> </ul> </li> <li> <a href="howto3.html">Services</a> <ul> <li><a href="howto3.html#Session_Type">Session Type</a></li> <li><a href="howto3.html#View_Interface">View Interfaces</a></li> <li><a href="howto3.html#Transactions">Transactions</a></li> <li><a href="howto3.html#Security">Security</a></li> <li><a href="howto3.html#Resource_Injection">Resource Injections</a></li> <li><a href="howto3.html#Nullable_Parameter">Nullable Parameters</a></li> <li><a href="howto3.html#Session_Delegate">Session Delegate</a></li> <li><a href="howto3.html#Listener_Callback">Listener Callback</a></li> <li><a href="howto3.html#Interceptors">Interceptors</a></li> <li><a href="howto3.html#JNDI_Bindings">JNDI Bindings</a></li> <li><a href="howto3.html#Persistence_Context_Entity_Manager">Persistence Context Entity Manager</a></li> <li><a href="howto3.html#EJB_Injections">EJB Injections</a></li> <li><a href="howto3.html#JMS_Injections">JMS Injections</a></li> <li><a href="howto3.html#EJB_Timer_Service">EJB Timer Service</a></li> </ul> </li> <li><a href="howto4.html">Composite Primary Key</a></li> <li><a href="howto5.html">Non-Persistent Enumerations</a></li> <li><a href="howto6.html">OCL to Query generator (finder methods)</a></li> <li><a href="howto7.html">Exception Handling</a></li> <li><a href="howto8.html">Security</a></li> </ul> </p> <p> You can download the UML model containing all models for all sections <a href="resources/HowToModel.xml.zip">here</a>. </p> <p> In order to start the tutorial click <a href="howto1.html">here</a>. </p> <subsection name="Summary"> <p> Here's already a brief summary of the information found in this how-to. </p> <p> <table> <tr> <th>Feature</th> <th>Element</th> <th>How</th> </tr> <tr> <td>Hibernate POJO</td> <td>class</td> <td>add the <![CDATA[<<Entity>>]]> stereotype</td> </tr> <tr> <td>Stand-alone Spring POJO Service <strong>OR</strong> Spring POJO Service wrapped with an EJB Session Bean</td> <td>class</td> <td>add the <![CDATA[<<Service>>]]> stereotype</td> </tr> <tr> <td>Value object</td> <td>class</td> <td>add the <![CDATA[<<ValueObject>>]]> stereotype, draw a dependency from an <![CDATA[<<Entity>>]]> to this class in order to have a transformation method generated in the entity's DAO</td> </tr> <tr> <td>Enumeration</td> <td>class</td> <td>assign a class with the <![CDATA[<<Enumeration>>]]> stereotype as the type of an entity's attribute</td> </tr> <tr> <td>Hibernate QL</td> <td>operation</td> <td>add an OCL body on an operation with the UML query flag set to true</td> </tr> <tr> <td>Unique attribute</td> <td>class</td> <td>add the <![CDATA[<<Unique>>]]> stereotype to an attribute, the attribute's class must carry the <![CDATA[<<Entity>>]]> stereotype</td> </tr> <tr> <td>Nullable parameter</td> <td>operation parameter</td> <td>only useful on operations modeled for <![CDATA[<<Entity>>]]> and <![CDATA[<<Service>>]]> classes</td> </tr> </table> </p> </subsection> </section> </body> </document> |
From: Vance K. <va...@us...> - 2006-02-23 08:22:57
|
User: vancek Date: 06/02/23 00:22:55 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: added composite pk table and security table Revision Changes Path 1.2 +14 -2 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -w -r1.1 -r1.2 --- howto.xml 6 Feb 2006 04:17:23 -0000 1.1 +++ howto.xml 23 Feb 2006 08:22:55 -0000 1.2 @@ -72,10 +72,22 @@ </ul> </li> <li><a href="howto4.html">Composite Primary Key</a></li> - <li><a href="howto5.html">Non-Persistent Enumerations</a></li> + <li> + <a href="howto5.html">Non-Persistent Type-Safe Enumerations</a> + <ul> + <li><a href="howto5.html#Literals">Literals</a></li> + <li><a href="howto5.html#Enumeration_Types">Enumeration Types</a></li> + </ul> + </li> <li><a href="howto6.html">OCL to Query generator (finder methods)</a></li> <li><a href="howto7.html">Exception Handling</a></li> - <li><a href="howto8.html">Security</a></li> + <li> + <a href="howto8.html">Security</a> + <ul> + <li><a href="howto8.html#Configuration">Configuration</a></li> + <li><a href="howto8.html#Modelling">Modelling</a></li> + </ul> + </li> </ul> </p> <p> |
From: Vance K. <va...@us...> - 2006-02-24 06:06:01
|
User: vancek Date: 06/02/23 22:05:52 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: added inheritance table Revision Changes Path 1.3 +14 -0 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -w -r1.2 -r1.3 --- howto.xml 23 Feb 2006 08:22:55 -0000 1.2 +++ howto.xml 24 Feb 2006 06:05:49 -0000 1.3 @@ -33,6 +33,8 @@ <li><a href="howto1.html#Unique_Attributes">Unique Attributes</a></li> <li><a href="howto1.html#Attribute_Fetch_Type">Attribute Fetch Type</a></li> <li><a href="howto1.html#Transient_Attribute">Transient Attribute</a></li> + <li><a href="howto1.html#Insertable_Attribute">Insertable Attribute</a></li> + <li><a href="howto1.html#Updatable_Attribute">Updatable Attribute</a></li> <li><a href="howto1.html#Version_Attribute">Version Attribute</a></li> <li><a href="howto1.html#Attribute_Multiplicity">Attribute Multiplicity</a></li> <li><a href="howto1.html#Constant_Attribute">Constant Attribute</a></li> @@ -88,6 +90,18 @@ <li><a href="howto8.html#Modelling">Modelling</a></li> </ul> </li> + <li> + <a href="howto9.html">Inheritance</a> + <ul> + <li><a href="howto9.html#Mapped_Superclasses">Mapped Superclass</a></li> + <li><a href="howto9.html#Single_Table_Strategy">Single Table Strategy</a></li> + <li><a href="howto9.html#Discriminator_Components">Discriminator Components</a></li> + <li><a href="howto9.html#Table_Per_Class_Strategy">Table Per Class Strategy</a></li> + <li><a href="howto9.html#Table_Join_Strategy">Table Join Strategy</a></li> + <li><a href="howto9.html#Generic_Finder_Methods">Generic Finder Methods</a></li> + <li><a href="howto9.html#Helpful_Hints">Helpful Hints</a></li> + </ul> + </li> </ul> </p> <p> |
From: Vance K. <va...@us...> - 2006-02-25 14:48:24
|
User: vancek Date: 06/02/25 06:48:22 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: added message-driven table Revision Changes Path 1.4 +12 -0 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -w -r1.3 -r1.4 --- howto.xml 24 Feb 2006 06:05:49 -0000 1.3 +++ howto.xml 25 Feb 2006 14:48:22 -0000 1.4 @@ -102,6 +102,18 @@ <li><a href="howto9.html#Helpful_Hints">Helpful Hints</a></li> </ul> </li> + <li> + <a href="howto10.html">Message-Driven Beans</a> + <ul> + <li><a href="howto10.html#Destination_Type">Destination Type</a></li> + <li><a href="howto10.html#Destination">Destination</a></li> + <li><a href="howto10.html#Discriminator_Components">Discriminator Components</a></li> + <li><a href="howto10.html#Table_Per_Class_Strategy">Table Per Class Strategy</a></li> + <li><a href="howto10.html#Table_Join_Strategy">Table Join Strategy</a></li> + <li><a href="howto10.html#Generic_Finder_Methods">Generic Finder Methods</a></li> + <li><a href="howto10.html#Helpful_Hints">Helpful Hints</a></li> + </ul> + </li> </ul> </p> <p> |
From: Vance K. <va...@us...> - 2006-03-03 04:05:57
|
User: vancek Date: 06/03/02 20:05:55 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: added lifecycle callback list Revision Changes Path 1.5 +8 -0 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -w -r1.4 -r1.5 --- howto.xml 25 Feb 2006 14:48:22 -0000 1.4 +++ howto.xml 3 Mar 2006 04:05:53 -0000 1.5 @@ -114,6 +114,14 @@ <li><a href="howto10.html#Helpful_Hints">Helpful Hints</a></li> </ul> </li> + <li> + <a href="howto14.html">Lifecycle Callbacks</a> + <ul> + <li><a href="howto14.html#Entity_Bean_Callbacks">Entity Bean Callbacks</a></li> + <li><a href="howto14.html#Session_Bean_Callbacks">Session Bean Callbacks</a></li> + <li><a href="howto14.html#Message_Driven_Bean_Callbacks">Message Driven Bean Callbacks</a></li> + </ul> + </li> </ul> </p> <p> |
From: Vance K. <va...@us...> - 2006-03-03 15:25:28
|
User: vancek Date: 06/03/03 07:25:26 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: added Injection list Revision Changes Path 1.6 +8 -1 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -w -r1.5 -r1.6 --- howto.xml 3 Mar 2006 04:05:53 -0000 1.5 +++ howto.xml 3 Mar 2006 15:25:26 -0000 1.6 @@ -61,7 +61,7 @@ <li><a href="howto3.html#View_Interface">View Interfaces</a></li> <li><a href="howto3.html#Transactions">Transactions</a></li> <li><a href="howto3.html#Security">Security</a></li> - <li><a href="howto3.html#Resource_Injection">Resource Injections</a></li> + <li><a href="howto3.html#Environment_Entry_Injection">Environment Entry Injections</a></li> <li><a href="howto3.html#Nullable_Parameter">Nullable Parameters</a></li> <li><a href="howto3.html#Session_Delegate">Session Delegate</a></li> <li><a href="howto3.html#Listener_Callback">Listener Callback</a></li> @@ -115,6 +115,13 @@ </ul> </li> <li> + <a href="howto11.html">Injection</a> + <ul> + <li><a href="howto11.html#Dependency_Injection">Dependency Injection</a></li> + <li><a href="howto11.html#Simple_Environment_Entry_Injection">Simple Environment Entry Injection</a></li> + </ul> + </li> + <li> <a href="howto14.html">Lifecycle Callbacks</a> <ul> <li><a href="howto14.html#Entity_Bean_Callbacks">Entity Bean Callbacks</a></li> |
From: Vance K. <va...@us...> - 2006-03-07 01:51:56
|
User: vancek Date: 06/03/06 17:51:55 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: added service patterns contents list Revision Changes Path 1.7 +8 -0 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -w -r1.6 -r1.7 --- howto.xml 3 Mar 2006 15:25:26 -0000 1.6 +++ howto.xml 7 Mar 2006 01:51:55 -0000 1.7 @@ -122,6 +122,14 @@ </ul> </li> <li> + <a href="howto12.html">Service Patterns</a> + <ul> + <li><a href="howto12.html#Service_Locator">Service Locator</a></li> + <li><a href="howto12.html#Service_Delegate">Service Delegate</a></li> + <li><a href="howto12.html#Further_Reading">Further Reading</a></li> + </ul> + </li> + <li> <a href="howto14.html">Lifecycle Callbacks</a> <ul> <li><a href="howto14.html#Entity_Bean_Callbacks">Entity Bean Callbacks</a></li> |
From: Vance K. <va...@us...> - 2006-03-09 06:39:13
|
User: vancek Date: 06/03/08 22:39:13 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: added interceptors and transaction lists Revision Changes Path 1.8 +18 -0 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -w -r1.7 -r1.8 --- howto.xml 7 Mar 2006 01:51:55 -0000 1.7 +++ howto.xml 9 Mar 2006 06:39:12 -0000 1.8 @@ -130,6 +130,17 @@ </ul> </li> <li> + <a href="howto13.html">Interceptors</a> + <ul> + <li><a href="howto13.html#Default_Interceptors">Default Interceptors</a></li> + <li><a href="howto13.html#Class_Level_Interceptor">Class Level Interceptor</a></li> + <li><a href="howto13.html#Method_Level_Interceptor">Method Level Interceptor</a></li> + <li><a href="howto13.html#Interceptor_Ordering">Interceptor Ordering</a></li> + <li><a href="howto13.html#Interceptor_Exclusion">Interceptor Exclusion</a></li> + <li><a href="howto13.html#Interceptor_Tips">Interceptor Tips</a></li> + </ul> + </li> + <li> <a href="howto14.html">Lifecycle Callbacks</a> <ul> <li><a href="howto14.html#Entity_Bean_Callbacks">Entity Bean Callbacks</a></li> @@ -137,6 +148,13 @@ <li><a href="howto14.html#Message_Driven_Bean_Callbacks">Message Driven Bean Callbacks</a></li> </ul> </li> + <li> + <a href="howto15.html">Transactions</a> + <ul> + <li><a href="howto15.html#Transaction_Type">Transaction Type</a></li> + <li><a href="howto15.html#Transaction_Demarcation">Transaction Demarcation</a></li> + </ul> + </li> </ul> </p> <p> |
From: Vance K. <va...@us...> - 2006-03-09 06:39:55
|
User: vancek Date: 06/03/08 22:39:54 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: removed summary Revision Changes Path 1.9 +0 -54 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -w -r1.8 -r1.9 --- howto.xml 9 Mar 2006 06:39:12 -0000 1.8 +++ howto.xml 9 Mar 2006 06:39:54 -0000 1.9 @@ -164,60 +164,6 @@ <p> In order to start the tutorial click <a href="howto1.html">here</a>. </p> - <subsection name="Summary"> - <p> - Here's already a brief summary of the information found in this how-to. - </p> - <p> - <table> - <tr> - <th>Feature</th> - <th>Element</th> - <th>How</th> - </tr> - <tr> - <td>Hibernate POJO</td> - <td>class</td> - <td>add the <![CDATA[<<Entity>>]]> stereotype</td> - </tr> - <tr> - <td>Stand-alone Spring POJO Service <strong>OR</strong> Spring POJO Service wrapped with an EJB Session Bean</td> - <td>class</td> - <td>add the <![CDATA[<<Service>>]]> stereotype</td> - </tr> - <tr> - <td>Value object</td> - <td>class</td> - <td>add the <![CDATA[<<ValueObject>>]]> stereotype, draw a dependency from an - <![CDATA[<<Entity>>]]> to this class in order to have a transformation method - generated in the entity's DAO</td> - </tr> - <tr> - <td>Enumeration</td> - <td>class</td> - <td>assign a class with the <![CDATA[<<Enumeration>>]]> stereotype as the type - of an entity's attribute</td> - </tr> - <tr> - <td>Hibernate QL</td> - <td>operation</td> - <td>add an OCL body on an operation with the UML query flag set to true</td> - </tr> - <tr> - <td>Unique attribute</td> - <td>class</td> - <td>add the <![CDATA[<<Unique>>]]> stereotype to an attribute, the attribute's - class must carry the <![CDATA[<<Entity>>]]> stereotype</td> - </tr> - <tr> - <td>Nullable parameter</td> - <td>operation parameter</td> - <td>only useful on operations modeled for <![CDATA[<<Entity>>]]> and <![CDATA[<<Service>>]]> - classes</td> - </tr> - </table> - </p> - </subsection> </section> </body> </document> |
From: Vance K. <va...@us...> - 2006-03-10 03:02:30
|
User: vancek Date: 06/03/09 19:02:29 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: added manageable entities to the list Revision Changes Path 1.10 +3 -0 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -w -r1.9 -r1.10 --- howto.xml 9 Mar 2006 06:39:54 -0000 1.9 +++ howto.xml 10 Mar 2006 03:02:29 -0000 1.10 @@ -155,6 +155,9 @@ <li><a href="howto15.html#Transaction_Demarcation">Transaction Demarcation</a></li> </ul> </li> + <li> + <a href="howto16.html">Manageable Entities</a> + </li> </ul> </p> <p> |
From: Vance K. <va...@us...> - 2006-03-20 08:52:50
|
User: vancek Date: 06/03/20 00:52:50 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: added caching and clustering howto content list. Revision Changes Path 1.11 +12 -1 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -u -w -r1.10 -r1.11 --- howto.xml 10 Mar 2006 03:02:29 -0000 1.10 +++ howto.xml 20 Mar 2006 08:52:49 -0000 1.11 @@ -39,7 +39,7 @@ <li><a href="howto1.html#Attribute_Multiplicity">Attribute Multiplicity</a></li> <li><a href="howto1.html#Constant_Attribute">Constant Attribute</a></li> <li><a href="howto1.html#Nullable_Parameters">Nullable Parameters</a></li> - <li><a href="howto1.html#LOB_CLOB_Attribute">LOB/CLOB Attributes</a></li> + <li><a href="howto1.html#LOB_Attribute">LOB BLOB/CLOB Attributes</a></li> <li><a href="howto1.html#Column_Specifics">Column Specifics</a></li> <li><a href="howto1.html#Listener_Callback">Listener Callback</a></li> </ul> @@ -52,6 +52,8 @@ <li><a href="howto2.html#Ordering_Collection_Valued_Association">Ordering Collection Valued Association</a></li> <li><a href="howto2.html#Join_Table_Many_To_Many">Join Table for Many-To-Many Relationship</a></li> <li><a href="howto2.html#Aggregation_Composition">Aggregation and Composition</a></li> + <li><a href="howto2.html#Transient_Relationships">Transient Relationships</a></li> + <li><a href="howto2.html#Tips">Tips</a></li> </ul> </li> <li> @@ -158,6 +160,15 @@ <li> <a href="howto16.html">Manageable Entities</a> </li> + <li> + <a href="howto17.html">Caching and Clustering</a> + <ul> + <li><a href="howto17.html#Cache_Config">Cache Configuration</a></li> + <li><a href="howto17.html#Entity_Cache">Entity Caching</a></li> + <li><a href="howto17.html#Association_Cache">Association Caching</a></li> + <li><a href="howto17.html#Query_Cache">Query Caching</a></li> + </ul> + </li> </ul> </p> <p> |
From: Vance K. <va...@us...> - 2006-04-17 14:52:53
|
User: vancek Date: 06/04/17 07:52:52 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: added web service howto index & fixed message-driven howto index Revision Changes Path 1.12 +17 -6 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -w -r1.11 -r1.12 --- howto.xml 20 Mar 2006 08:52:49 -0000 1.11 +++ howto.xml 17 Apr 2006 14:52:52 -0000 1.12 @@ -83,7 +83,7 @@ <li><a href="howto5.html#Enumeration_Types">Enumeration Types</a></li> </ul> </li> - <li><a href="howto6.html">OCL to Query generator (finder methods)</a></li> + <li><a href="howto6.html">Queries & Finder Methods</a></li> <li><a href="howto7.html">Exception Handling</a></li> <li> <a href="howto8.html">Security</a> @@ -109,11 +109,15 @@ <ul> <li><a href="howto10.html#Destination_Type">Destination Type</a></li> <li><a href="howto10.html#Destination">Destination</a></li> - <li><a href="howto10.html#Discriminator_Components">Discriminator Components</a></li> - <li><a href="howto10.html#Table_Per_Class_Strategy">Table Per Class Strategy</a></li> - <li><a href="howto10.html#Table_Join_Strategy">Table Join Strategy</a></li> - <li><a href="howto10.html#Generic_Finder_Methods">Generic Finder Methods</a></li> - <li><a href="howto10.html#Helpful_Hints">Helpful Hints</a></li> + <li><a href="howto10.html#Acknowledge_Mode">Acknowledge Mode</a></li> + <li><a href="howto10.html#Message_Selector">Message Selector</a></li> + <li><a href="howto10.html#Subscription_Durability">Subscription Durability</a></li> + <li><a href="howto10.html#Listener_Interceptor">Listener Interceptor</a></li> + <li><a href="howto10.html#Transaction_Context">Transaction Context</a></li> + <li><a href="howto10.html#Security">Security</a></li> + <li><a href="howto10.html#Message_Driven_Context">Message Driven Context</a></li> + <li><a href="howto10.html#Session_Bean_Injection">Session Bean Injection</a></li> + <li><a href="howto10.html#Resource_Injection">Resource Injections</a></li> </ul> </li> <li> @@ -169,6 +173,13 @@ <li><a href="howto17.html#Query_Cache">Query Caching</a></li> </ul> </li> + <li> + <a href="howto18.html">WebService</a> + <ul> + <li><a href="howto18.html#WebService_Client">WebService Client</a></li> + <li><a href="howto18.html#Helpful_Hints">Helpful Hints</a></li> + </ul> + </li> </ul> </p> <p> |
From: Vance K. <va...@us...> - 2006-05-02 02:24:44
|
User: vancek Date: 06/05/01 19:24:43 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: added DAO content Revision Changes Path 1.13 +9 -0 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -w -r1.12 -r1.13 --- howto.xml 17 Apr 2006 14:52:52 -0000 1.12 +++ howto.xml 2 May 2006 02:24:43 -0000 1.13 @@ -45,6 +45,15 @@ </ul> </li> <li> + <a href="howto19.html">Data Access Objects</a> + <ul> + <li><a href="howto19.html#Queries">Queries</a></li> + <li><a href="howto19.html#View_Interface">View_Interface</a></li> + <li><a href="howto19.html#Transactions">Transactions</a></li> + <li><a href="howto19.html#Security">Security</a></li> + </ul> + </li> + <li> <a href="howto2.html">Relationships</a> <ul> <li><a href="howto2.html#Cascading">Cascading</a></li> |
From: Vance K. <va...@us...> - 2006-05-05 05:33:17
|
User: vancek Date: 06/05/04 22:33:12 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: added embeddable value object link Revision Changes Path 1.14 +3 -0 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -u -w -r1.13 -r1.14 --- howto.xml 2 May 2006 02:24:43 -0000 1.13 +++ howto.xml 5 May 2006 05:33:12 -0000 1.14 @@ -189,6 +189,9 @@ <li><a href="howto18.html#Helpful_Hints">Helpful Hints</a></li> </ul> </li> + <li> + <a href="howto20.html">Embeddable Value Objects</a> + </li> </ul> </p> <p> |
From: Vance K. <va...@us...> - 2006-05-13 02:38:38
|
User: vancek Date: 06/05/12 19:38:37 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: minor fixes Revision Changes Path 1.15 +6 -4 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -w -r1.14 -r1.15 --- howto.xml 5 May 2006 05:33:12 -0000 1.14 +++ howto.xml 13 May 2006 02:38:37 -0000 1.15 @@ -18,8 +18,10 @@ </p> <p> The AndroMDA EJB3 cartridge focuses on the persistence and business tier only. The - presentation tier can be handled in AndroMDA as well, but for that we recommend using the - <a href="../andromda-bpm4struts-cartridge/index.html">Bpm4Struts</a> cartridge. + presentation tier can be handled in AndroMDA as well, but for that we recommend using either the + <a href="http://team.andromda.org/docs/andromda-bpm4struts-cartridge/index.html">Bpm4Struts</a> + or the <a href="http://team.andromda.org/docs/andromda-jsf-cartridge/index.html">JSF</a> + cartridge. </p> <p> In this how-to we will cover the following topics: @@ -104,12 +106,12 @@ <li> <a href="howto9.html">Inheritance</a> <ul> + <li><a href="howto9.html#Non_Inheriting_Entities">Non Inheriting Entities</a></li> <li><a href="howto9.html#Mapped_Superclasses">Mapped Superclass</a></li> <li><a href="howto9.html#Single_Table_Strategy">Single Table Strategy</a></li> <li><a href="howto9.html#Discriminator_Components">Discriminator Components</a></li> <li><a href="howto9.html#Table_Per_Class_Strategy">Table Per Class Strategy</a></li> <li><a href="howto9.html#Table_Join_Strategy">Table Join Strategy</a></li> - <li><a href="howto9.html#Generic_Finder_Methods">Generic Finder Methods</a></li> <li><a href="howto9.html#Helpful_Hints">Helpful Hints</a></li> </ul> </li> @@ -196,7 +198,7 @@ </p> <p> You can download the UML model containing all models for all sections - <a href="resources/HowToModel.xml.zip">here</a>. + <a href="HowToModel.xml.zip">here</a>. </p> <p> In order to start the tutorial click <a href="howto1.html">here</a>. |
From: Vance K. <va...@us...> - 2006-05-15 12:25:37
|
User: vancek Date: 06/05/15 05:25:17 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: added to caching and clustering section Revision Changes Path 1.16 +2 -0 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -w -r1.15 -r1.16 --- howto.xml 13 May 2006 02:38:37 -0000 1.15 +++ howto.xml 15 May 2006 12:25:17 -0000 1.16 @@ -182,6 +182,8 @@ <li><a href="howto17.html#Entity_Cache">Entity Caching</a></li> <li><a href="howto17.html#Association_Cache">Association Caching</a></li> <li><a href="howto17.html#Query_Cache">Query Caching</a></li> + <li><a href="howto17.html#Clustering">Clustering Session Beans</a></li> + <li><a href="howto17.html#Further_Reading">Further Reading</a></li> </ul> </li> <li> |
From: Vance K. <va...@us...> - 2006-05-15 12:39:17
|
User: vancek Date: 06/05/15 05:39:16 Modified: andromda-ejb3/src/site/xdoc howto.xml Log: renamed HowToModel.xml.zip to HowToModel.xmi Revision Changes Path 1.17 +1 -1 cartridges/andromda-ejb3/src/site/xdoc/howto.xml Index: howto.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/site/xdoc/howto.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -w -r1.16 -r1.17 --- howto.xml 15 May 2006 12:25:17 -0000 1.16 +++ howto.xml 15 May 2006 12:39:16 -0000 1.17 @@ -200,7 +200,7 @@ </p> <p> You can download the UML model containing all models for all sections - <a href="HowToModel.xml.zip">here</a>. + <a href="HowToModel.xmi">here</a>. </p> <p> In order to start the tutorial click <a href="howto1.html">here</a>. |