/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
 * indicated by the @author tags or express copyright attribution
 * statements applied by the authors.  All third-party contributions are
 * distributed under license by Red Hat Middleware LLC.
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 *
 */
package org.hibernate.id;
import java.io.Serializable;
import java.util.Properties;

import org.hibernate.MappingException;
import org.hibernate.Session;
import org.hibernate.TransientObjectException;
import org.hibernate.dialect.Dialect;
import org.hibernate.engine.internal.ForeignKeys;
import org.hibernate.engine.spi.SessionImplementor;
import org.hibernate.loader.PropertyPath;
import org.hibernate.persister.entity.EntityPersister;
import org.hibernate.type.EntityType;
import org.hibernate.type.Type;

foreign

An Identifier generator that uses the value of the id property of an associated object

One mapping parameter is required: property.
Author:Gavin King
/** * <b>foreign</b><br> * <br> * An <tt>Identifier</tt> generator that uses the value of the id property of an * associated object<br> * <br> * One mapping parameter is required: property. * * @author Gavin King */
public class ForeignGenerator implements IdentifierGenerator, Configurable { private String entityName; private String propertyName;
Getter for property 'entityName'.
Returns:Value for property 'entityName'.
/** * Getter for property 'entityName'. * * @return Value for property 'entityName'. */
public String getEntityName() { return entityName; }
Getter for property 'propertyName'.
Returns:Value for property 'propertyName'.
/** * Getter for property 'propertyName'. * * @return Value for property 'propertyName'. */
public String getPropertyName() { return propertyName; }
Getter for property 'role'. Role is the property name qualified by the entity name.
Returns:Value for property 'role'.
/** * Getter for property 'role'. Role is the {@link #getPropertyName property name} qualified by the * {@link #getEntityName entity name}. * * @return Value for property 'role'. */
public String getRole() { return getEntityName() + '.' + getPropertyName(); } @Override public void configure(Type type, Properties params, Dialect d) { propertyName = params.getProperty( "property" ); entityName = params.getProperty( ENTITY_NAME ); if ( propertyName==null ) { throw new MappingException( "param named \"property\" is required for foreign id generation strategy" ); } } @Override public Serializable generate(SessionImplementor sessionImplementor, Object object) { Session session = ( Session ) sessionImplementor; final EntityPersister persister = sessionImplementor.getFactory().getEntityPersister( entityName ); Object associatedObject = persister.getPropertyValue( object, propertyName ); if ( associatedObject == null ) { throw new IdentifierGenerationException( "attempted to assign id from null one-to-one property [" + getRole() + "]" ); } final EntityType foreignValueSourceType; final Type propertyType = persister.getPropertyType( propertyName ); if ( propertyType.isEntityType() ) { // the normal case foreignValueSourceType = (EntityType) propertyType; } else { // try identifier mapper foreignValueSourceType = (EntityType) persister.getPropertyType( PropertyPath.IDENTIFIER_MAPPER_PROPERTY + "." + propertyName ); } Serializable id; try { id = ForeignKeys.getEntityIdentifierIfNotUnsaved( foreignValueSourceType.getAssociatedEntityName(), associatedObject, sessionImplementor ); } catch (TransientObjectException toe) { id = session.save( foreignValueSourceType.getAssociatedEntityName(), associatedObject ); } if ( session.contains(object) ) { //abort the save (the object is already saved by a circular cascade) return IdentifierGeneratorHelper.SHORT_CIRCUIT_INDICATOR; //throw new IdentifierGenerationException("save associated object first, or disable cascade for inverse association"); } return id; } }