blob: 735be229b47788feb297cd1c66ed13d2a9404238 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 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;
/**
* <p><b>Purpose:</b>
* 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());
}
}