blob: 02443def8a66c851431180cbafda6f99afba2c89 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.j2ee.persistence.provider;
import java.util.Collections;
import java.util.Map;
import org.openide.util.NbBundle;
import org.netbeans.modules.j2ee.persistence.dd.common.Persistence;
/**
* This class represents Hibernate provider.
*
* @author Erno Mononen
*/
class HibernateProvider extends Provider{
protected HibernateProvider(String version){
super("org.hibernate.ejb.HibernatePersistence", version);
}
protected HibernateProvider(){
this(null);
}
@Override
public String getDisplayName() {
return NbBundle.getMessage(HibernateProvider.class, "LBL_Hibernate") + (getVersion()!=null ? " (JPA "+getVersion()+")" : ""); //NOI18N
}
@Override
public String getJdbcUrl() {
return Persistence.VERSION_1_0.equals(getVersion()) ? "hibernate.connection.url" : super.getJdbcUrl();
}
@Override
public String getJdbcDriver() {
return Persistence.VERSION_1_0.equals(getVersion()) ? "hibernate.connection.driver_class" : super.getJdbcDriver();
}
@Override
public String getJdbcUsername() {
return Persistence.VERSION_1_0.equals(getVersion()) ? "hibernate.connection.username" : super.getJdbcUsername();
}
@Override
public String getJdbcPassword() {
return Persistence.VERSION_1_0.equals(getVersion()) ? "hibernate.connection.password" : super.getJdbcPassword();
}
@Override
public String getTableGenerationPropertyName() {
return (getVersion()!=null && Persistence.VERSION_2_1.equals(getVersion())) ? super.getTableGenerationPropertyName() : "hibernate.hbm2ddl.auto";
}
@Override
public String getTableGenerationDropCreateValue() {
return (getVersion()!=null && Persistence.VERSION_2_1.equals(getVersion())) ? super.getTableGenerationDropCreateValue() : "create-drop";
}
@Override
public String getTableGenerationCreateValue() {
return (getVersion()!=null && Persistence.VERSION_2_1.equals(getVersion())) ? super.getTableGenerationCreateValue() : "update";
}
@Override
public Map getUnresolvedVendorSpecificProperties() {
return Collections.EMPTY_MAP;
}
@Override
public Map getDefaultVendorSpecificProperties() {
return Collections.singletonMap(
"hibernate.cache.provider_class",
"org.hibernate.cache.NoCacheProvider");
}
@Override
public String getAnnotationProcessor() {
return (getVersion()!=null && !Persistence.VERSION_1_0.equals(getVersion())) ? "org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor" : super.getAnnotationProcessor();
}
}