blob: c0dff9b9b4b9f7d6d47af4289eab7c76e1a0e9d9 [file] [log] [blame]
/*
* Copyright (c) 2013, 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:
// tware - initial implementation
package org.eclipse.persistence.internal.jpa.metamodel.proxy;
import jakarta.persistence.metamodel.PluralAttribute;
import jakarta.persistence.metamodel.Type;
import org.eclipse.persistence.internal.jpa.metamodel.PluralAttributeImpl;
/**
* A proxy class that allows EclipseLink to trigger the deployment of a persistence unit
* as an PluralAttribute is accessed in the metamodel.
* @author tware
*
* @param <X>
* @param <C>
* @param <V>
*/
public class PluralAttributeProxyImpl<X, C, V> extends AttributeProxyImpl<X, C> implements PluralAttribute<X, C, V>{
@Override
public jakarta.persistence.metamodel.Bindable.BindableType getBindableType() {
return ((PluralAttributeImpl)getAttribute()).getBindableType();
}
@Override
public Class<V> getBindableJavaType() {
return ((PluralAttributeImpl)getAttribute()).getBindableJavaType();
}
@Override
public jakarta.persistence.metamodel.PluralAttribute.CollectionType getCollectionType() {
return ((PluralAttributeImpl)getAttribute()).getCollectionType();
}
@Override
public Type<V> getElementType() {
return ((PluralAttributeImpl)getAttribute()).getElementType();
}
}