Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6ab28a3051b84994941a324f9a5a96d379d8a2d5 (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
<?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 persitent 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>




</contexts>

Back to the top