Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 42c0bbe3081f9c3eba514c8c1701d4b8ff1bced9 (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
/*******************************************************************************
* Copyright (c) 2008 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
* 
* Contributors:
*     Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.eclipselink.core.internal.context;

import org.eclipse.jpt.eclipselink.core.internal.context.caching.Caching;
import org.eclipse.jpt.eclipselink.core.internal.context.connection.Connection;
import org.eclipse.jpt.eclipselink.core.internal.context.customization.Customization;
import org.eclipse.jpt.eclipselink.core.internal.context.logging.Logging;
import org.eclipse.jpt.eclipselink.core.internal.context.options.Options;
import org.eclipse.jpt.eclipselink.core.internal.context.schema.generation.SchemaGeneration;

/**
 *  EclipseLinkProperties
 */
public interface EclipseLinkProperties extends PersistenceUnitProperties
{
	Caching getCaching();
		static final String CACHING_PROPERTY = "cachingProperty";
		
	Connection getConnection();
	static final String CONNECTION_PROPERTY = "connectionProperty";
	
	Customization getCustomization();
		static final String CUSTOMIZATION_PROPERTY = "customizationProperty";
		
		Logging getLogging();
			static final String LOGGING_PROPERTY = "loggingProperty";
			
		Options getOptions();
			static final String OPTIONS_PROPERTY = "optionsProperty";
		
	SchemaGeneration getSchemaGeneration();
		static final String SCHEMA_GENERATION_PROPERTY = "schemaGenerationProperty";
	
}

Back to the top