This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTITAN.txt
58 lines (41 loc) · 1.73 KB
/
TITAN.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
###############################################################################
# Configurations
###############################################################################
CONFIG:CATALINA:c:/jakarta-tomcat
CONFIG:OPENEJB:c:/openejb-1.0
# Define the project name
PROJECT:titan:Titan Vacances
# Enable Lazy loading (not fully functional)
CACHE:COLLECTIONS:FIELDS:FKS
###############################################################################
# Resources
###############################################################################
# Define a global DataSource Resource
RESOURCE:DATASOURCE:dbserver:jdbc/titan:mysql:IDENTITY
###############################################################################
# EJBs
###############################################################################
# define a CMP entity bean
BEAN:CMP:CABIN:cabin:com.titan.j2ee
# inside jndi, this bean will be located under titan folder (optional)
JNDI-BASEPATH:titan
DESCRIPTION:Define a Cabin Object...
AUTHOR:Paulo Lopes
FIELD:integer:CABIN_ID:integer:id:not null:ro:pk
FIELD:integer:SHIP_ID:integer:ship:null:rw:fk
FIELD:integer:CABIN_BED_COUNT:integer:bedCount:null
FIELD:varchar:CABIN_NAME:string:name:not null
FIELD:integer:CABIN_DECK_LEVEL:integer:deckLevel:null
# this bean will have a datasource resource
RESOURCE-LINK:dbserver
BEAN:CMP:SHIP:ship:com.titan.j2ee
JNDI-BASEPATH:titan
AUTHOR:Paulo Lopes
# I don't like BigDecimal... so i'll trick Castor
FIELD:integer:SHIP_ID:integer:id:not null:ro:pk
FIELD:varchar:SHIP_NAME:integer:name:null
FIELD:integer:SHIP_CAPACITY:integer:capacity:null
FIELD:double:SHIP_TONNAGE:integer:tonnage:null
RESOURCE-LINK:dbserver
# define collections here...
COLLECTION:1-*:cabin