/******************************************************************************* * Copyright (c) 1998, 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.testing.tests.queries.options; import java.util.*; import org.eclipse.persistence.queries.*; /** * TopLink generated Project class. * <b>WARNING</b>: This code was generated by an automated tool. * Any changes will be lost when the code is re-generated */ public class QueryOptionProject extends org.eclipse.persistence.sessions.Project { /** * <b>WARNING</b>: This code was generated by an automated tool. * Any changes will be lost when the code is re-generated */ public QueryOptionProject() { applyPROJECT(); applyLOGIN(); buildHistoryDescriptor(); buildEmployeeDescriptor(); } /** * TopLink generated method. * <b>WARNING</b>: This code was generated by an automated tool. * Any changes will be lost when the code is re-generated */ protected void applyLOGIN() { } /** * TopLink generated method. * <b>WARNING</b>: This code was generated by an automated tool. * Any changes will be lost when the code is re-generated */ protected void applyPROJECT() { setName("QueryOptionSystem"); } /** * TopLink generated method. * <b>WARNING</b>: This code was generated by an automated tool. * Any changes will be lost when the code is re-generated */ protected void buildHistoryDescriptor() { org.eclipse.persistence.descriptors.RelationalDescriptor descriptor = new org.eclipse.persistence.descriptors.RelationalDescriptor(); // SECTION: DESCRIPTOR descriptor.setJavaClass(QueryOptionHistory.class); Vector vector = new Vector(); vector.addElement("QUERY_OPTION_HISTORY"); descriptor.setTableNames(vector); descriptor.addPrimaryKeyFieldName("QUERY_OPTION_HISTORY.ID"); // SECTION: PROPERTIES descriptor.setIdentityMapClass(org.eclipse.persistence.internal.identitymaps.FullIdentityMap.class); descriptor.setSequenceNumberName("SEQ_ID"); descriptor.setSequenceNumberFieldName("ID"); descriptor.setExistenceChecking("Check cache"); descriptor.setIdentityMapSize(100); // SECTION: COPY POLICY descriptor.createCopyPolicy("constructor"); // SECTION: INSTANTIATION POLICY descriptor.createInstantiationPolicy("constructor"); // SECTION: DIRECTTOFIELDMAPPING org.eclipse.persistence.mappings.DirectToFieldMapping directtofieldmapping = new org.eclipse.persistence.mappings.DirectToFieldMapping(); directtofieldmapping.setAttributeName("id"); directtofieldmapping.setIsReadOnly(false); directtofieldmapping.setFieldName("QUERY_OPTION_HISTORY.ID"); descriptor.addMapping(directtofieldmapping); // SECTION: DIRECTTOFIELDMAPPING org.eclipse.persistence.mappings.DirectToFieldMapping directtofieldmapping1 = new org.eclipse.persistence.mappings.DirectToFieldMapping(); directtofieldmapping1.setAttributeName("startDate"); directtofieldmapping1.setIsReadOnly(false); directtofieldmapping1.setFieldName("QUERY_OPTION_HISTORY.STARTDATE"); descriptor.addMapping(directtofieldmapping1); addDescriptor(descriptor); } /** * TopLink generated method. * <b>WARNING</b>: This code was generated by an automated tool. * Any changes will be lost when the code is re-generated */ protected void buildEmployeeDescriptor() { org.eclipse.persistence.descriptors.RelationalDescriptor descriptor = new org.eclipse.persistence.descriptors.RelationalDescriptor(); // SECTION: DESCRIPTOR descriptor.setJavaClass(QueryOptionEmployee.class); Vector vector = new Vector(); vector.addElement("QUERY_OPTION_EMPLOYEE"); descriptor.setTableNames(vector); descriptor.addPrimaryKeyFieldName("QUERY_OPTION_EMPLOYEE.ID"); // SECTION: PROPERTIES descriptor.setIdentityMapClass(org.eclipse.persistence.internal.identitymaps.FullIdentityMap.class); descriptor.setExistenceChecking("Check cache"); descriptor.setIdentityMapSize(100); descriptor.setSequenceNumberName("SEQ_ID"); descriptor.setSequenceNumberFieldName("ID"); descriptor.setExistenceChecking("Check cache"); // Query manager. descriptor.getQueryManager().checkCacheForDoesExist(); //Named Queries //Named Query -- memoryQueryReturnConformedQuery ReadObjectQuery namedQuery = new ReadObjectQuery(QueryOptionEmployee.class); namedQuery.setShouldRefreshIdentityMapResult(true); namedQuery.setShouldRefreshRemoteIdentityMapResult(true); descriptor.getQueryManager().addQuery("refreshRemoteIdentityMapResultsQuery", namedQuery); // SECTION: COPY POLICY // descriptor.createCopyPolicy("constructor"); // SECTION: INSTANTIATION POLICY // descriptor.createInstantiationPolicy("constructor"); // SECTION: DIRECTTOFIELDMAPPING org.eclipse.persistence.mappings.DirectToFieldMapping directtofieldmapping = new org.eclipse.persistence.mappings.DirectToFieldMapping(); directtofieldmapping.setAttributeName("id"); directtofieldmapping.setIsReadOnly(false); directtofieldmapping.setFieldName("QUERY_OPTION_EMPLOYEE.ID"); descriptor.addMapping(directtofieldmapping); // SECTION: DIRECTTOFIELDMAPPING org.eclipse.persistence.mappings.DirectToFieldMapping directtofieldmapping1 = new org.eclipse.persistence.mappings.DirectToFieldMapping(); directtofieldmapping1.setAttributeName("name"); directtofieldmapping1.setIsReadOnly(false); directtofieldmapping1.setFieldName("QUERY_OPTION_EMPLOYEE.NAME"); descriptor.addMapping(directtofieldmapping1); // SECTION: ONETOONEMAPPING org.eclipse.persistence.mappings.OneToOneMapping onetoonemapping1 = new org.eclipse.persistence.mappings.OneToOneMapping(); onetoonemapping1.setAttributeName("history"); onetoonemapping1.setIsReadOnly(false); onetoonemapping1.setUsesIndirection(false); onetoonemapping1.setReferenceClass(QueryOptionHistory.class); onetoonemapping1.setIsPrivateOwned(true); onetoonemapping1.addForeignKeyFieldName("QUERY_OPTION_EMPLOYEE.HISTORY_ID", "QUERY_OPTION_HISTORY.ID"); descriptor.addMapping(onetoonemapping1); addDescriptor(descriptor); } }