/******************************************************************************* * Copyright (c) 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. ******************************************************************************/ package org.eclipse.persistence.testing.models.jpa22.attributeconverter; import org.eclipse.persistence.testing.framework.TogglingFastTableCreator; import org.eclipse.persistence.tools.schemaframework.FieldDefinition; import org.eclipse.persistence.tools.schemaframework.TableDefinition; public class AttributeConverterTableCreator extends TogglingFastTableCreator { public AttributeConverterTableCreator(){ setName("AttributeConverterTableCreator"); addTableDefinition(buildAttributeConverterHolderTable()); } public TableDefinition buildAttributeConverterHolderTable(){ TableDefinition table = new TableDefinition(); table.setName("ATT_CON_HOLD"); FieldDefinition field = new FieldDefinition(); field.setName("ID"); field.setTypeName("NUMERIC"); field.setSize(15); field.setSubSize(0); field.setIsPrimaryKey(true); field.setIsIdentity(true); field.setUnique(false); field.setShouldAllowNull(false); table.addField(field); FieldDefinition nameField = new FieldDefinition(); nameField.setName("NAME"); nameField.setTypeName("VARCHAR"); nameField.setSize(255); nameField.setSubSize(0); nameField.setIsPrimaryKey(false); nameField.setIsIdentity(false); nameField.setUnique(false); nameField.setShouldAllowNull(true); table.addField(nameField); return table; } }