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

org.hibernate.id.PersistentIdentifierGenerator Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
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.id;

import java.util.Properties;

import org.hibernate.HibernateException;
import org.hibernate.dialect.Dialect;
import org.hibernate.service.ServiceRegistry;
import org.hibernate.type.Type;

/**
 * An IdentifierGenerator that requires creation of database objects.
 * 

* All PersistentIdentifierGenerators have access to a special mapping parameter * in their {@link #configure(Type, Properties, ServiceRegistry)} method: schema * * @author Gavin King * @author Steve Ebersole * * @see IdentifierGenerator */ public interface PersistentIdentifierGenerator extends IdentifierGenerator { /** * The configuration parameter holding the schema name */ String SCHEMA = "schema"; /** * The configuration parameter holding the table name for the * generated id */ String TABLE = "target_table"; /** * The configuration parameter holding the table names for all * tables for which the id must be unique */ String TABLES = "identity_tables"; /** * The configuration parameter holding the primary key column * name of the generated id */ String PK = "target_column"; /** * The configuration parameter holding the catalog name */ String CATALOG = "catalog"; /** * The key under which to find the {@link org.hibernate.boot.model.naming.ObjectNameNormalizer} in the config param map. */ String IDENTIFIER_NORMALIZER = "identifier_normalizer"; /** * Return a key unique to the underlying database objects. Prevents us from * trying to create/remove them multiple times. * * @return Object an identifying key for this generator * @deprecated No longer necessary. */ @Deprecated default Object generatorKey() { return null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy