All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.persistence.mappings.structures.ArrayMapping Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/*
 * Copyright (c) 1998, 2018 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 v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0,
 * or the Eclipse Distribution License v. 1.0 which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
 */

// Contributors:
//     Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.mappings.structures;

import org.eclipse.persistence.exceptions.*;
import org.eclipse.persistence.internal.sessions.AbstractSession;
import org.eclipse.persistence.mappings.foundation.AbstractCompositeDirectCollectionMapping;


/**
 * 

Purpose: * In an object-relational data model, structures can contain "Arrays" or collections of other data-types. * In Oracle 8i, a "VARRAY" is typically used to represent a collection of primitive data or aggregate structures. * These arrays are stored with their parent structure in the same table. * * @see StructureMapping * @see NestedTableMapping * @see ReferenceMapping */ public class ArrayMapping extends AbstractCompositeDirectCollectionMapping { /** * Default constructor. */ public ArrayMapping() { super(); } /** * PUBLIC: * Set the name of the field that holds the nested collection. */ public void setFieldName(String fieldName) { this.setField(new ObjectRelationalDatabaseField(fieldName)); } /** * PUBLIC: * Return the name of the structure. * This is the name of the user-defined data type as defined on the database. */ public String getStructureName() { return this.getElementDataTypeName(); } /** * PUBLIC: * Set the name of the structure. * This is the name of the user-defined data type as defined on the database. */ public void setStructureName(String structureName) { this.setElementDataTypeName(structureName); } /** * PUBLIC: * Return the "data type" associated with each element * in the nested collection. * Depending on the data store, this could be optional. */ public String getElementDataTypeName() { return elementDataTypeName; } /** * PUBLIC: * Set the "data type" associated with each element * in the nested collection. * Depending on the data store, this could be optional. */ public void setElementDataTypeName(String elementDataTypeName) { this.elementDataTypeName = elementDataTypeName; } /** * INTERNAL: */ @Override public boolean isRelationalMapping() { return true; } /** * INTERNAL: * Initialize the mapping. */ @Override public void initialize(AbstractSession session) throws DescriptorException { super.initialize(session); if (this.getStructureName().length() == 0) { throw DescriptorException.structureNameNotSetInMapping(this); } // For bug 2730536 convert the field to be an ObjectRelationalDatabaseField. ObjectRelationalDatabaseField field = (ObjectRelationalDatabaseField)getField(); field.setSqlType(java.sql.Types.ARRAY); field.setSqlTypeName(getStructureName()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy