blob: 90dc1cd1da177273668407c1837ec7dc1d009e26 [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.jdo.tck.pc.companyAnnotatedJPA;
import javax.jdo.PersistenceManager;
import org.apache.jdo.tck.pc.company.*;
/*
* CompanyFactoryAnnotatedPMFieldClass.java
*
* This class uses the PersistenceManager.newInstance method with the concrete
* class as a parameter.
*/
public class CompanyFactoryAnnotatedJPAAppPM
extends CompanyFactoryAbstractImpl
implements CompanyFactoryNewInstance {
/**
* Creates a new instance of CompanyFactoryAnnotatedPMFieldClass
*/
public CompanyFactoryAnnotatedJPAAppPM(PersistenceManager pm) {
super(pm);
}
public Class[] getTearDownClasses() {
return new Class[] {
JPAAppDentalInsurance.class,
JPAAppMedicalInsurance.class,
JPAAppPartTimeEmployee.class,
JPAAppFullTimeEmployee.class,
JPAAppProject.class,
JPAAppDepartment.class,
JPAAppCompany.class,
JPAAppAddress.class
};
}
public IAddress newAddress() {
return (IAddress)pm.newInstance(JPAAppAddress.class);
}
public ICompany newCompany() {
return (ICompany)pm.newInstance(JPAAppCompany.class);
}
public IDentalInsurance newDentalInsurance() {
return (IDentalInsurance)pm.newInstance(JPAAppDentalInsurance.class);
}
public IDepartment newDepartment() {
return (IDepartment)pm.newInstance(JPAAppDepartment.class);
}
public IFullTimeEmployee newFullTimeEmployee() {
return (IFullTimeEmployee)pm.newInstance(JPAAppFullTimeEmployee.class);
}
public IMedicalInsurance newMedicalInsurance() {
return (IMedicalInsurance)pm.newInstance(JPAAppMedicalInsurance.class);
}
public IPartTimeEmployee newPartTimeEmployee() {
return (IPartTimeEmployee)pm.newInstance(JPAAppPartTimeEmployee.class);
}
public IProject newProject() {
return (IProject)pm.newInstance(JPAAppProject.class);
}
}