/*
 * 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 <http://www.gnu.org/licenses/lgpl-2.1.html>.
 */
package org.hibernate.id;

import java.util.Properties;

import org.hibernate.MappingException;
import org.hibernate.service.ServiceRegistry;
import org.hibernate.type.Type;

An IdentifierGenerator that supports "configuration".
Author:Gavin King, Steve Ebersole
See Also:
/** * An {@link IdentifierGenerator} that supports "configuration". * * @see IdentifierGenerator * * @author Gavin King * @author Steve Ebersole */
public interface Configurable {
Configure this instance, given the value of parameters specified by the user as <param> elements. This method is called just once, following instantiation.
Params:
  • type – The id property type descriptor
  • params – param values, keyed by parameter name
  • serviceRegistry – Access to service that may be needed.
/** * Configure this instance, given the value of parameters * specified by the user as <tt>&lt;param&gt;</tt> elements. * This method is called just once, following instantiation. * * @param type The id property type descriptor * @param params param values, keyed by parameter name * @param serviceRegistry Access to service that may be needed. */
void configure(Type type, Properties params, ServiceRegistry serviceRegistry) throws MappingException; }