All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.tuple.ValueGeneration Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.tuple;

import java.io.Serializable;

/**
 * Describes the generation of property values.
 *
 * @author Steve Ebersole
 */
public interface ValueGeneration extends Serializable {
	/**
	 * When is this value generated : NEVER, INSERT, ALWAYS (INSERT+UPDATE)
	 *
	 * @return When the value is generated.
	 */
	public GenerationTiming getGenerationTiming();

	/**
	 * Obtain the in-VM value generator.
	 * 

* May return {@code null}. In fact for values that are generated "in the database" via execution of the * INSERT/UPDATE statement, the expectation is that {@code null} be returned here * * @return The strategy for performing in-VM value generation */ public ValueGenerator getValueGenerator(); /** * For values which are generated in the database ({@link #getValueGenerator()} == {@code null}), should the * column be referenced in the INSERT / UPDATE SQL? *

* This will be false most often to have a DDL-defined DEFAULT value be applied on INSERT * * @return {@code true} indicates the column should be included in the SQL. */ public boolean referenceColumnInSql(); /** * For values which are generated in the database ({@link #getValueGenerator} == {@code null}), if the * column will be referenced in the SQL ({@link #referenceColumnInSql()} == {@code true}), what value should be * used in the SQL as the column value. *

* Generally this will be a function call or a marker (DEFAULTS). *

* NOTE : for in-VM generation, this will not be called and the column value will implicitly be a JDBC parameter ('?') * * @return The column value to be used in the SQL. */ public String getDatabaseGeneratedReferencedColumnValue(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy