blob: 3e185297ac325b9f76242e51380c105bf57fc719 [file] [log] [blame]
/**
* <copyright> Copyright (c) 2005, 2006, 2007, 2008 Springsite BV (The Netherlands) and others 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: Martin Taal </copyright> $Id:
* AgilAction.java,v 1.1 2007/03/28 13:58:33 mtaal Exp $
*/
package org.eclipse.emf.teneo.hibernate.test.issues;
import java.util.Properties;
import org.eclipse.emf.teneo.PersistenceOptions;
/**
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
* @version $Revision: 1.1 $
*/
public class BZ329275_ConvertUnsetToNulllAction extends BZ329275Action {
@Override
public Properties getExtraConfigurationProperties() {
final Properties props = new Properties();
props.setProperty(PersistenceOptions.CONVERT_UNSET_TO_NULL, "true");
return props;
}
protected boolean isConvertUnsetToNull() {
return true;
}
protected boolean supportAuditing() {
return false;
}
}