blob: 3194ca89dec42c7f978c2c4413997c1172ea5b52 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 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.db.internal.vendor;
import java.util.ArrayList;
import org.eclipse.datatools.modelbase.sql.schema.Database;
class Derby
extends AbstractVendor
{
// singleton
private static final Vendor INSTANCE = new Derby();
/**
* Return the singleton.
*/
static Vendor instance() {
return INSTANCE;
}
/**
* Ensure single instance.
*/
private Derby() {
super();
}
@Override
public String getDTPVendorName() {
return "Derby"; //$NON-NLS-1$
}
@Override
CatalogStrategy getCatalogStrategy() {
return FauxCatalogStrategy.instance();
}
@Override
FoldingStrategy getFoldingStrategy() {
return UpperCaseFoldingStrategy.instance();
}
@Override
void addDefaultSchemaNamesTo(Database database, String userName, ArrayList<String> names) {
names.add(this.buildDefaultSchemaName(userName));
}
/**
* The default user name on Derby is "APP" when the user connects without
* a user name.
*/
private String buildDefaultSchemaName(String userName) {
return ((userName != null) && (userName.length() != 0)) ?
this.convertIdentifierToName(userName) :
DEFAULT_USER_NAME;
}
private static final String DEFAULT_USER_NAME = "APP"; //$NON-NLS-1$
}