Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4d0ab01239a71ac2548b1f123a16d320b7ab1464 (plain) (blame)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
<?xml version="1.0" encoding="UTF-8"?>
<?NLS TYPE="org.eclipse.help.contexts"?>
<contexts>
	<context id="entity_accessType">
		<description>Specify how the variable is accessed: Property (default) or Field.</description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Adding persistence to a class" href="task_add_persistence.htm"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="entity_name">
		<description>The name of this entity. By default, the class name is used as the entity name.</description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Adding persistence to a class" href="task_add_persistence.htm"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="entity_table">
		<description>The database table assigned to this entity. By default, the class name is used as the database table name.</description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Adding persistence to a class" href="task_add_persistence.htm"/>
		<topic label="Adding persistence to a class" href="task_add_persistence.htm"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="entity_attributeOverrides">
		<description>Specify a property or field to be overridden (from the default mappings).</description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Adding persistence to a class" href="task_add_persistence.htm"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="entity_attributeOverridesName">
		<description>Name of the database column.</description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Adding persistence to a class" href="task_add_persistence.htm"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="entity_attributeOverridesColumn">
		<description>The database column that overrides a property or field.</description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Adding persistence to a class" href="task_add_persistence.htm"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="entity_attributeOverridesInsertable">
		<description>Specifies if the column is always included in SQL INSERT statements.</description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Adding persistence to a class" href="task_add_persistence.htm"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="entity_attributeOverridesUpdatable">
		<description>Specifies if the column is always included in SQL UPDATE statements.</description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Adding persistence to a class" href="task_add_persistence.htm"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="mapping_mapAs">
		<description>Specify how this attribute maps to the database.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_column">
		<description>The database column that contains the value for the attribute.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_columnTable">
		<description>Name of the database table that contains the selected column.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_columnInsertable">
		<description>Specifies if the column is always included in SQL INSERT statements.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_columnUpdatable">
		<description>Specifies if the column is always included in SQL UPDATE statements.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_fetchType">
		<description>Defines how data is loaded from the database: Eager (default) or Lazy</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_optional">
		<description>Specifies if this field is can be null.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_generatedValueStrategy">
		<description>Determines how the primary key is generated: Auto (default), Sequence, Identity, or Table.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_generatedValueGeneratorName">
		<description>Unique name of the generator.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_targetEntity">
		<description>The entity to which this attribute is mapped. </description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_cascadeType">
		<description>Specify which operations are propagated throughout the entity: All, Persist, Merge, or Move.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_mappedBy">
		<description>The field in the database table that owns the relationship.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_joinColumnName">
		<description>The name of the database column that contains the foreign key reference for the entity association.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_joinReferencedColumn">
		<description>Name of the join table that contains the foreign key column.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_embeddedAttributeOverrides">
		<description>Specify to override the default  mapping of an entity’s attribute.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="mapping_embeddedAttributeOverridesColumn">
		<description>The database column that is being mapped to the entity’s attribute.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="entity_mapAs">
		<description>Specify the type of persistent domain object for the Java class: Persistent, Embedded, or Mapped Superclass.</description>
		<topic label="Adding persistence to a class" href="task_add_persistence.htm"/>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="entity_inheritanceStrategy">
		<description>Specify how an entity may inherit properties from other entities: Single table, One table per class, or Joined tables.</description>
		<topic label="Specifying inheritance" href="task_inheritance.htm"/>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
	</context>
	<context id="entity_inheritanceDiscriminatorColumn">
		<description>Use to specify the name of the discriminator column when using a Single or Joined inheritance strategy.</description>
		<topic label="Specifying inheritance" href="task_inheritance.htm"/>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
	</context>
	<context id="entity_inheritanceDiscriminatorType">
		<description>Use this field to set the discriminator type to CHAR or INTEGER (instead of its default: String). The discriminator value must conform to this type.</description>
		<topic label="Specifying inheritance" href="task_inheritance.htm"/>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
	</context>
	<context id="entity_inheritanceDiscriminatorValue">
		<description>Specify the discriminator value used to differentiate an entity in this inheritance hierarchy. The value must conform to the specified discriminator type.</description>
		<topic label="Specifying inheritance" href="task_inheritance.htm"/>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
	</context>
	<context id="mapping_orderBy">
		<description>Specify the default order for objects returned from a query.</description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Mapping an Entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_joinTableName">
		<description>Specify the  name of the database table that defines the foreign key for a many-to-many or a unidirectional one-to-many association. You can configure the join table with a specific catalog or schema, configure one or more join table columns with a unique constraint, and use multiple join columns per entity.</description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_joinTableJoinColumns">
		<description>Specify  two or more join columns (that is, a composite primary key).</description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_joinTableInverseJoinColumns">
		<description>Specify the join column on the owned (or inverse side) of the association: the owned entity's primary key column. </description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="properties_javaPersistence">
		<description>Use the Java Persistence options on the Properties page to select the database connection to use with the project.</description>
		<topic label="Project properties" href="ref_project_properties"/>
		<topic label="Adding persistence" href="ref_add_persistence.htm"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="properties_javaPersistenceConnection">
		<description>The database connection used to map the persistent entities.</description>
		<topic label="Project properties" href="ref_project_properties"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="properties_javaPersistenceSchema">
		<description>The database schema used to map the persistent entities.</description>
		<topic label="Project properties" href="ref_project_properties"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="dialog_addPersistence">
		<description>Use the Add Persistence dialog to define the database connection use to store the persistence entities.</description>
		<topic label="Adding persistence" href="ref_add_persistence.htm"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="persistenceOutline">
		<description>The JPA Structure view displays an outline of the structure (its attributes and mappings) of the entity that is currently selected or opened in the editor.</description>
		<topic label="JPA Structure view" href="ref_persistence_outline.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="dialog_generateEntities">
		<description>Use the Generate Entities dialog to create Java persistent entities based on your database tables.</description>
		<topic label="Generating entities from tables" href="task_generate_entities.htm.htm" />
		<topic label="Project properties" href="ref_project_properties"/>
	</context>
	<context id="dialog_generateEntities_source">
		<description>The project folder name in which to generate the Java persistent entities. Click Browse to select an existing folder.</description>
		<topic label="Generating entities from tables" href="task_generate_entities.htm"/>
	</context>
	<context id="dialog_generateEntities_package">
		<description>The package in which to generate the Java persistent entities, or click Browse to select an existing package.</description>
		<topic label="Generating entities from tables" href="task_generate_entities.htm"/>
	</context>
	<context id="dialog_generateEntities_tables">
		<description>Select the tables from which to create Java persistent entities.</description>
		<topic label="Generating entities from tables" href="task_generate_entities.htm"/>
		<topic label="Project properties" href="ref_project_properties"/>
	</context>
	<context id="dialog_addJavaPersistence">
		<description>Use this dialog to define the database connection used to store the persistence entities and to create the persistence.xml file.</description>
		<topic label="Add Persistence dialog" href="ref_add_persistence.htm" />
		<topic label="Adding persistence to a project" href="task_add_persistence" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence.htm" />
	</context>
	<context id="dialog_newJPAProject">
		<description>Use this dialog to define the new JPA project name, its location, target runtime, and other configuration settings.</description>
		<topic label="New JPA Project page" href="ref_new_jpa_project.htm" />
		<topic label="New JPA Project wizard" href="ref_new_jpa_project_wizard" />
		<topic label="Adding persistence to a project" href="task_add_persistence" />
		<topic label="Creating a new JPA project" href="task_create_new_project.htm" />
	</context>
	<context id="dialog_addJavaPersistence_database">
		<description>Use these fields to define the database connection used to store the persistent entities.</description>
		<topic label="Add Persistence dialog" href="ref_add_persistence.htm" />
		<topic label="Adding persistence to a project" href="task_add_persistence" />
	</context>
	<context id="dialog_addJavaPersistence_classpath">
		<description>Use this option to add libraries or JARs that contain the Java Persistence API (JPA) and entities to the project’s Java Build Path.</description>
		<topic label="Add Persistence dialog" href="ref_add_persistence.htm" />
		<topic label="Adding persistence to a project" href="task_add_persistence" />
	</context>
	<context id="dialog_addJavaPersistence_packaging">
		<description>Use these fields to create the persistence.xml file. Select the persistence version, the name of the JPA provider, and a unique name to identify the persistence unit.</description>
		<topic label="Add Persistence dialog" href="ref_add_persistence.htm" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence.htm" />
	</context>
	<context id="wizard_generateDDL_options ">
		<description>Use this page to select which script options will be included in the generated script.</description>
		<topic label="Generating tables (DDL) from entities " href="task_generate_ddl.htm" />
		<topic label="Options page " href="ref_options.htm" />
	</context>
	<context id="wizard_generateDDL_objects ">
		<description>Use this page to select which elements will be included in the generated script.</description>
		<topic label="Generating tables (DDL) from entities " href="task_generate_ddl.htm" />
		<topic label="Objects page " href="ref_objects.htm" />
	</context>
	<context id="wizard_generateDDL_save ">
		<description>Use this page to select the filename and location of the generated script. You can also preview the script and specify to run or continue editing the script after generation.</description>
		<topic label="Generating tables (DDL) from entities " href="task_generate_ddl.htm" />
		<topic label="Save and Run DDL page " href="ref_save_and_run.htm" />
	</context>
	<context id="wizard_generateDDL_summary ">
		<description>This page shows the settings that you selected for the generated DDL. To change any option click "Back" or click "Finish" to continue.</description>
		<topic label="Generating tables (DDL) from entities " href="task_generate_ddl.htm" />
	</context>
	<context id="mapping_tableGeneratorName">
		<description>The name of the table sequence generator. This name is global to to the persistence unit (across all generator types).</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_tableGeneratorTable">
		<description>The database table that stores the generated ID values. </description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_tableGeneratorPrimaryKeyColumn">
		<description>The database column of the generator table that stores the generated ID values.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_tableGeneratorValueColumn">
		<description>The name for the column that stores the generated ID values.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_tableGeneratorPrimaryKeyColumnValue">
		<description>The database column of the generator table that defines the primary key value.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="dialog_databaseAuthorization">
		<description>Use to connect (log in) to a database connection to use with your Java persistent entities. 
		You must have a defined database connection (and be connected) to add persistence. </description>
		<topic label="Add persistence to a Java project" href="task_add_persistence_project.htm"/>
	</context>
	<context id="mapping_temporal">
		<description>Specify if the mapped field contains a Date (java.sql.Date), Time (java.sql.Time), or Timestamp (java.sql.Timestamp) value.</description>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_primaryKeyGeneration">
		<description>Define how the primary key is generated</description>
		<topic label="Primary Key Generation information" href="ref_primary_key.htm"/>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_tableGenerator">
		<description>Specify to use a specific database table for generating the primary key.</description>
		<topic label="Primary Key Generation information" href="ref_primary_key.htm"/>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_sequenceGenerator">
		<description>Specify to use a specific sequence for generating the primary key.</description>
		<topic label="Primary Key Generation information" href="ref_primary_key.htm"/>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_sequenceGeneratorName">
		<description>Name of the sequence.</description>
		<topic label="Primary Key Generation information" href="ref_primary_key.htm"/>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_sequenceGeneratorSequence">
		<description> </description>
		<topic label="Primary Key Generation information" href="ref_primary_key.htm"/>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_lob">
		<description>Specify if the field is mapped to java.sql.Clob or java.sql.Blob.</description>
		<topic label="General information" href="ref_mapping_general.htm"/>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="mapping_enumerated">
		<description>Specify how to persist enumerated constraints if the String value suits your application requirements or to match an existing database schema.</description>
		<topic label="General information" href="ref_mapping_general.htm"/>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="dialog_editInverseJoinColumn">
		<description>.</description>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
	</context>
	<context id="entity_catalog">
		<description>The database catalog that contains the Table. This field overrides the defaults in the orm.xml file.</description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Adding persistence to a class" href="task_add_persistence.htm"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="entity_schema">
		<description>The database schema that contains the Table. This field overrides the defaults in the orm.xml file.</description>
		<topic label="JPA Details" href="ref_persistence_prop_view.htm"/>
		<topic label="Adding persistence to a class" href="task_add_persistence.htm"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	<context id="orm_package">
		<description>The Java package that contains the persistent entities to which the orm.xml file applies.</description>
		<topic label="Managing the orm.xml file" href="task_manage_orm.htm"/>
		<topic label="JPA Details" href="ref_details_orm.htm"/>
	</context>
	<context id="orm_schema">
		<description>The database schema to use as the default for all entities managed by this persistence unit.</description>
		<topic label="Managing the orm.xml file" href="task_manage_orm.htm"/>
		<topic label="JPA Details" href="ref_details_orm.htm"/>
	</context>
	<context id="orm_catalog">
		<description>The database catalog to use as the default for all entities managed by this persistence unit.</description>
		<topic label="Managing the orm.xml file" href="task_manage_orm.htm"/>
		<topic label="JPA Details" href="ref_details_orm.htm"/>
	</context>
	<context id="orm_access">
		<description>The default access method for variables in this project: Property or Field.</description>
		<topic label="Managing the orm.xml file" href="task_manage_orm.htm"/>
		<topic label="JPA Details" href="ref_details_orm.htm"/>
	</context>
	<context id="orm_cascade">
		<description>Adds cascade-persist to the set of cascade options in entity relationships of the persistence unit.</description>
		<topic label="Managing the orm.xml file" href="task_manage_orm.htm"/>
		<topic label="JPA Details" href="ref_details_orm.htm"/>
	</context>
	<context id="orm_xml">
		<description>Specifies that the Java classes in this persistence unit are fully specified by their metadata. Any annotations will be ignored.</description>
		<topic label="Managing the orm.xml file" href="task_manage_orm.htm"/>
		<topic label="JPA Details" href="ref_details_orm.htm"/>
	</context>
	<context id="dialog_JPAPlatform">
		<description>Specify the vendor-specific JPA implementation.Default is Generic..</description>
		<topic label="JPA Facet page" href="ref_jpa_facet.htm"/>
	</context>
	<context id="dialog_createORM">
		<description>Create an initial orm.xml file. Use this file to specify project and persistence unit defaults.</description>
		<topic label="Managing the orm.xml file" href="task_manage_orm.htm"/>
		<topic label="JPA Facet page" href="ref_jpa_facet.htm"/>
	</context>

	<context id="caching_defaultType">
		<description>Select the default caching strategy for the project. The default is Weak with Soft Subcache.</description>
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="caching_defaultSize">
		<description>Select the default size of the cache. The default is 100 items.</description>
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="caching_defaultShared">
		<description>Specify if cached instances should be in the shared cache or in a client isolated cache.</description>
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="logging_level">
		<description>Specifies the amount and detail of log output by selecting the log level. Default is Info level.</description>
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="logging_timeStamp">
		<description>Control whether the timestamp is logged in each log entry. Default is True.</description>
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="logging_thread">
		<description>Control whether a thread identifier is logged in each log entry. Default is True.</description>
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="logging_session">
		<description>Control whether an EclipseLink session identifier is logged in each log entry. Default is True.</description>
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="logging_exceptions">
		<description>Control whether the exceptions thrown from within the code are logged prior to returning the exception to the calling application. Ensures that all exceptions are logged and not masked by the application code.. Default is False.</description>
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="options_sessionName">
		<description>Specify the name by which the EclipseLink session is stored in the static session manager.</description>
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="options_sessionsXml">
		<description>Specify persistence information loaded from the EclipseLink session configuration file. You can use this option as an alternative to annotations and deployment XML.</description>
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="options_targetDatabase">
		<description></description>
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="options_targetServer">
		<description> </description>
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="dialog_newJPAProjectJava">
		<description>Use this dialog to include existing Java source files in this project.</description>
		<topic label="Java page" href="ref_java_page.htm" />
		<topic label="New JPA Project wizard" href="ref_new_jpa_project_wizard" />
		<topic label="Creating a new JPA project" href="task_create_new_project.htm" />
	</context>
	<context id="dialog_newJPAProjectFacet">
		<description>Use this dialog to specify your vender-specific platform, JPA implementation library, and database connection.</description>
		<topic label="JPA Facet page" href="ref_jpa_facet.htm" />
		<topic label="New JPA Project wizard" href="ref_new_jpa_project_wizard" />
		<topic label="Creating a new JPA project" href="task_create_new_project.htm" />
	</context>
	<context id="dialog_entityClassPage">
		<description>Use this dialog to specify package, class name, and inheritance properties of the entity to create.</description>
		<topic label="Entity Class page" href="ref_EntityClassPage.htm" />
		<topic label="New JPA Entity wizard" href="ref_create_jpa_entity_wizard.htm" />
		<topic label="Creating a new JPA entity" href="task_create_jpa_entity.htm" />
	</context>
	<context id="dialog_entityPropertiesPage">
		<description>Use this dialog to specify the entity name, associated table, and mapped fields.</description>
		<topic label="Entity Properties page" href="ref_EntityPropertiesPage.htm" />
		<topic label="New JPA Entity wizard" href="ref_create_jpa_entity_wizard.htm" />
		<topic label="Creating a new JPA entity" href="task_create_jpa_entity.htm" />
	</context>
	<context id="dialog_selectTablesPage">
		<description>Use this dialog to specify the database tables from which to generate entities.</description>
		<topic label="Select Tables page" href="ref_selectTables.htm" />
		<topic label="Generate Custom Entities wizard" href="ref_create_custom_entities_wizard.htm" />
	</context>	
	<context id="dialog_tableAssociationsPage">
		<description>Use this dialog to create or edit the association between the database table and entity.</description>
		<topic label="Table Associations page" href="ref_tableAssociations.htm" />
		<topic label="Generate Custom Entities wizard" href="ref_create_custom_entities_wizard.htm" />
	</context>	
	<context id="dialog_customizeDefaultEntityGeneration">
		<description>Use this dialog to specify the table mapping and domain class information for the generated entity.</description>
		<topic label="Customize Default Entity Generation page" href="ref_customizeDefaultEntityGeneration.htm" />
		<topic label="Generate Custom Entities wizard" href="ref_create_custom_entities_wizard.htm" />
	</context>	
	<context id="dialog_customizeIndividualEntities">
		<description>Use this dialog to specify the table mapping and domain class information for the generated entity.</description>
		<topic label="Customize Individual Entities page" href="ref_customizIndividualEntities.htm" />
		<topic label="Generate Custom Entities wizard" href="ref_create_custom_entities_wizard.htm" />
	</context>	

	<context id="dialog_associationTablesPage">
		<description>Use this dialog to specify the association tables for an entity.</description>
		<topic label="Association Tables page" href="ref_association_tables.htm" />
		<topic label="Create New Association wizard" href="ref_create_new_association_wizard.htm" />
	</context>	
	<context id="dialog_joinColumnsPage">
		<description>Use this dialog to specify the join columns of an association table.</description>
		<topic label="Join Columns page" href="ref_join_columns.htm" />
		<topic label="Create New Association wizard" href="ref_create_new_association_wizard.htm" />
	</context>	
	<context id="dialog_associationCardinalityPage">
		<description>Use this dialog to specify cardinality of an association table.</description>
		<topic label="Association Cardinality page" href="ref_association_cardinality.htm" />
		<topic label="Create New Association wizard" href="ref_create_new_association_wizard.htm" />
	</context>	
	<context id="dialog_selectCascade">
		<description>Specify which operations are propagated throughout the association: All, Persist, Merge, Remove, or Refresh.</description>
		<topic label="Select Cascade page" href="ref_select_cascade_dialog.htm"/>
		<topic label="JPA Details" href="ref_persistence_map_view.htm"/>
		<topic label="Mapping an entity" href="task_mapping.htm"/>
		<topic label="Understanding OR mappings" href="concept_mapping.htm"/>
	</context>
	<context id="persistence_general">
		<description>Specify the general persistence options.</description>
		<topic label="General page" href="ref_persistence_general" />
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="persistence_connection">
		<description>Specify the data source or JDBC connection properties.</description>
		<topic label="Connection page" href="ref_persistence_connection" />
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="persistence_customization">
		<description>Specify the default or entity specific EclipseLink customization and validation properties.</description>
		<topic label="Customization page" href="ref_persistence_connection" />
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="persistence_caching">
		<description>Configure the session or entity specific EclipseLink caching properties.</description>
		<topic label="Caching page" href="ref_persistence_caching" />
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="persistence_logging">
		<description>Configure the EclipseLink logging properties.</description>
		<topic label="Logging page" href="ref_persistence_logging" />
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="persistence_options">
		<description>Configure the EclipseLink session and miscellanous options.</description>
		<topic label="Options page" href="ref_persistence_options" />
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="persistence_schemaGeneration">
		<description>Configure the schema generation properties.</description>
		<topic label="Schema Generation page" href="ref_persistence_schemaGeneration" />
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
	<context id="persistence_properties">
		<description>Configure the properties defined for the persistence unit.</description>
		<topic label="Properties page" href="ref_persistence_properties" />
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>
		<context id="persistence_source">
		<description>Configure the properties defined for the persistence unit.</description>
		<topic label="Properties page" href="ref_persistence_properties" />
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the persistence.xml file" href="task_manage_persistence" />
	</context>	
	<context id="dialog_eclipselink_mapping_file">
		<description>Configure the properties defined for the persistence unit.</description>
		<topic label="New EclipseLink Mapping File page" href="ref_eclipselink_mapping_file" />
		<topic label="persistence.xml editor" href="ref_persistence_xml_editor" />
		<topic label="Managing the orm.xml file" href="task_manage_orm" />
	</context>
	<context id="dialog_create_new_converters">
		<description>Use this dialog to create a new EclipseLink conveter.</description>
		<topic label="Add Converter dialog" href="ref_add_converter" />
		<topic label="Managing the orm.xml file" href="task_manage_orm" />
	</context>

<!-- Added for 3.0 -->
	<context id="properties_canonicalMetamodel">
		<description>                               </description>
		<topic label="Project properties" href="ref_project_properties"/>
		<topic label="Understanding persistence" href="concept_persistence.htm"/>
	</context>
	
</contexts>

Back to the top