blob: 7c88382efe7a2a858e86d1374e97119e07dd7e1b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2010 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.core.internal.jpa1.context.orm;
import org.eclipse.jpt.common.utility.internal.StringTools;
import org.eclipse.jpt.jpa.core.context.Generator;
import org.eclipse.jpt.jpa.core.context.XmlContextNode;
import org.eclipse.jpt.jpa.core.internal.context.orm.AbstractOrmSequenceGenerator;
import org.eclipse.jpt.jpa.core.resource.orm.XmlSequenceGenerator;
/**
* <code>orm.xml</code> sequence generator
*/
public class GenericOrmSequenceGenerator
extends AbstractOrmSequenceGenerator
{
public GenericOrmSequenceGenerator(XmlContextNode parent, XmlSequenceGenerator xmlSequenceGenerator) {
super(parent, xmlSequenceGenerator);
}
// ********** database stuff **********
/**
* The JPA 1.0 spec does not allow a sequence to specify a catalog.
*/
@Override
protected String getCatalog() {
return this.getContextDefaultCatalog();
}
/**
* The JPA 1.0 spec does not allow a sequence to specify a schema.
*/
@Override
protected String getSchema() {
return this.getContextDefaultSchema();
}
// ********** validation **********
@Override
public boolean isIdentical(Generator generator) {
return super.isIdentical(generator) &&
StringTools.stringsAreEqual(this.getSchema(), (((GenericOrmSequenceGenerator)generator).getSchema())) &&
StringTools.stringsAreEqual(this.getCatalog(), (((GenericOrmSequenceGenerator)generator).getCatalog()));
}
}