blob: 80d9d75a7cc015b65c51938bf03d1f82fdc64ba1 [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.apache.olingo.odata2.jpa.processor.core.model;
import javax.persistence.metamodel.Metamodel;
import org.apache.olingo.odata2.jpa.processor.api.ODataJPAContext;
import org.apache.olingo.odata2.jpa.processor.api.access.JPAEdmBuilder;
import org.apache.olingo.odata2.jpa.processor.api.access.JPAEdmMappingModelAccess;
import org.apache.olingo.odata2.jpa.processor.api.factory.ODataJPAFactory;
import org.apache.olingo.odata2.jpa.processor.api.model.JPAEdmBaseView;
import org.apache.olingo.odata2.jpa.processor.api.model.JPAEdmExtension;
public abstract class JPAEdmBaseViewImpl implements JPAEdmBaseView {
protected boolean skipDefaultNaming = false;
protected String pUnitName = null;
protected Metamodel metaModel = null;
protected boolean isConsistent = true;
protected JPAEdmBuilder builder = null;
protected JPAEdmExtension jpaEdmExtension = null;
private JPAEdmMappingModelAccess jpaEdmMappingModelAccess = null;
public JPAEdmBaseViewImpl(final JPAEdmBaseView view) {
pUnitName = view.getpUnitName();
metaModel = view.getJPAMetaModel();
jpaEdmMappingModelAccess = view.getJPAEdmMappingModelAccess();
jpaEdmExtension = view.getJPAEdmExtension();
skipDefaultNaming = view.isDefaultNamingSkipped();
}
public JPAEdmBaseViewImpl(final ODataJPAContext context) {
pUnitName = context.getPersistenceUnitName();
metaModel = context.getEntityManager().getMetamodel();
jpaEdmMappingModelAccess =
ODataJPAFactory.createFactory().getJPAAccessFactory().getJPAEdmMappingModelAccess(context);
jpaEdmExtension = context.getJPAEdmExtension();
jpaEdmMappingModelAccess.loadMappingModel();
skipDefaultNaming = !context.getDefaultNaming();
}
public JPAEdmBaseViewImpl(final Metamodel metaModel, final String pUnitName) {
this.metaModel = metaModel;
this.pUnitName = pUnitName;
}
@Override
public String getpUnitName() {
return pUnitName;
}
@Override
public Metamodel getJPAMetaModel() {
return metaModel;
}
@Override
public boolean isConsistent() {
return isConsistent;
}
@Override
public void clean() {
pUnitName = null;
metaModel = null;
isConsistent = false;
}
@Override
public JPAEdmMappingModelAccess getJPAEdmMappingModelAccess() {
return jpaEdmMappingModelAccess;
}
@Override
public JPAEdmExtension getJPAEdmExtension() {
return jpaEdmExtension;
}
@Override
public boolean isDefaultNamingSkipped() {
return skipDefaultNaming;
}
}