Package org.hibernate.metamodel.source.annotations.entity.state.binding

Examples of org.hibernate.metamodel.source.annotations.entity.state.binding.EntityBindingStateImpl


    this.superType = superType;
  }

  public EntityBinding bind() {
    EntityBinding entityBinding = new EntityBinding();
    EntityBindingStateImpl entityBindingState = new EntityBindingStateImpl( superType, entityClass );

    bindJpaEntityAnnotation( entityBindingState );
    bindHibernateEntityAnnotation( entityBindingState ); // optional hibernate specific @org.hibernate.annotations.Entity
    bindTable( entityBinding );
View Full Code Here


    this.meta = metadata;
  }

  public void bind() {
    EntityBinding entityBinding = new EntityBinding();
    EntityBindingStateImpl entityBindingState = new EntityBindingStateImpl( getSuperType(), configuredClass );

    bindJpaEntityAnnotation( entityBindingState );
    bindHibernateEntityAnnotation( entityBindingState ); // optional hibernate specific @org.hibernate.annotations.Entity

    schemaName = createSchemaName();
View Full Code Here

TOP

Related Classes of org.hibernate.metamodel.source.annotations.entity.state.binding.EntityBindingStateImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.