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

org.eclipse.persistence.internal.jpa.metamodel.EntityTypeImpl Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*******************************************************************************
 * Copyright (c) 2011, 2013 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: 
 *     03/19/2009-2.0  dclarke  - initial API start    
 *     06/30/2009-2.0  mobrien - finish JPA Metadata API modifications in support
 *       of the Metamodel implementation for EclipseLink 2.0 release involving
 *       Map, ElementCollection and Embeddable types on MappedSuperclass descriptors
 *       - 266912: JPA 2.0 Metamodel API (part of the JSR-317 EJB 3.1 Criteria API)  
 *     07/06/2009-2.0  mobrien - 266912: Introduce IdentifiableTypeImpl between ManagedTypeImpl
 *       - EntityTypeImpl now inherits from IdentifiableTypeImpl instead of ManagedTypeImpl
 *       - MappedSuperclassTypeImpl now inherits from IdentifiableTypeImpl instead
 *       of implementing IdentifiableType indirectly
 *     07/16/2009-2.0  mobrien - 266912: implement getIdType() minus full composite key support
 *         http://wiki.eclipse.org/EclipseLink/Development/JPA_2.0/metamodel_api#DI_47:_20090715:_Implement_IdentifiableType.getIdType.28.29_for_composite_keys
 ******************************************************************************/
package org.eclipse.persistence.internal.jpa.metamodel;

import javax.persistence.metamodel.Bindable;
import javax.persistence.metamodel.EntityType;
import javax.persistence.metamodel.Type;

import org.eclipse.persistence.descriptors.ClassDescriptor;

/**
 * 

* Purpose: Provides the implementation for the EntityType interface * of the JPA 2.0 Metamodel API (part of the JSR-317 EJB 3.1 Criteria API) *
EntityTypeImpl implements the IdentifiableType interface via EntityType *

* Description: * Instances of the type EntityType represent entity types. * * @see javax.persistence.metamodel.EntityType * * @since EclipseLink 1.2 - JPA 2.0 * @param The represented entity type. */ public class EntityTypeImpl extends IdentifiableTypeImpl implements EntityType { /** Item 54: DI 89: explicit UID will avoid performance hit runtime generation of one */ private static final long serialVersionUID = 7970950485096018114L; protected EntityTypeImpl(MetamodelImpl metamodel, ClassDescriptor descriptor) { super(metamodel, descriptor); // The supertype field will remain uninstantiated until MetamodelImpl.initialize() is complete } /** * Return the bindable type of the represented object. * @return bindable type */ public Bindable.BindableType getBindableType() { return Bindable.BindableType.ENTITY_TYPE; } /** * Return the Java type of the represented object. * If the bindable type of the object is PLURAL_ATTRIBUTE, * the Java element type is returned. If the bindable type is * SINGULAR_ATTRIBUTE or ENTITY_TYPE, * the Java type of the * represented entity or attribute is returned. * @return Java type */ public Class getBindableJavaType() { // In EntityType our BindableType is ENTITY_TYPE - return the java type of the entity return this.getJavaType(); } /** * Return the entity name * @return entity name */ public String getName() { return getDescriptor().getAlias(); } /** * Return the persistence type. * @return persistence type */ public Type.PersistenceType getPersistenceType() { return Type.PersistenceType.ENTITY; } /** * INTERNAL: * Return whether this type is an Entity (true) or MappedSuperclass (false) or Embeddable (false) * @return */ @Override public boolean isEntity() { return true; } /** * INTERNAL: * Return whether this type is an MappedSuperclass (true) or Entity (false) or Embeddable (false) * @return */ @Override public boolean isMappedSuperclass() { return !isEntity(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy