blob: c97010af26df242676d92cf85d186b5b66255f54 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.core.context;
public interface GeneratedValue extends JpaContextNode
{
GenerationType getStrategy();
GenerationType getDefaultStrategy();
GenerationType getSpecifiedStrategy();
void setSpecifiedStrategy(GenerationType value);
String SPECIFIED_STRATEGY_PROPERTY = "specifiedStrategyProperty";
String DEFAULT_STRATEGY_PROPERTY = "defaultStrategyProperty";
String getGenerator();
String getDefaultGenerator();
GenerationType DEFAULT_STRATEGY = GenerationType.AUTO;
String getSpecifiedGenerator();
void setSpecifiedGenerator(String value);
String SPECIFIED_GENERATOR_PROPERTY = "specifiedGeneratorProperty";
String DEFAULT_GENERATOR_PROPERTY = "defaultGeneratorProperty";
}