mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-08 20:24:46 +00:00
HHH-6447 Formatting
This commit is contained in:
parent
520db31a65
commit
c069e6dada
@ -32,19 +32,19 @@
|
||||
* @author Steve Ebersole
|
||||
*/
|
||||
public interface BindingContext {
|
||||
public ServiceRegistry getServiceRegistry();
|
||||
public ServiceRegistry getServiceRegistry();
|
||||
|
||||
public NamingStrategy getNamingStrategy();
|
||||
public NamingStrategy getNamingStrategy();
|
||||
|
||||
public MappingDefaults getMappingDefaults();
|
||||
public MappingDefaults getMappingDefaults();
|
||||
|
||||
public MetadataImplementor getMetadataImplementor();
|
||||
|
||||
public <T> Class<T> locateClassByName(String name);
|
||||
public <T> Class<T> locateClassByName(String name);
|
||||
|
||||
public Type makeJavaType(String className);
|
||||
|
||||
public boolean isGloballyQuotedIdentifiers();
|
||||
public boolean isGloballyQuotedIdentifiers();
|
||||
|
||||
public Value<Class<?>> makeClassReference(String className);
|
||||
|
||||
|
@ -112,10 +112,15 @@ public class ConfiguredClass {
|
||||
private final Map<String, SimpleAttribute> simpleAttributeMap;
|
||||
|
||||
/**
|
||||
* The mapped simple attributes for this entity
|
||||
* The version attribute or {@code null} in case none exists.
|
||||
*/
|
||||
private SimpleAttribute versionAttribute;
|
||||
|
||||
/**
|
||||
* The discriminator attribute or {@code null} in case none exists.
|
||||
*/
|
||||
private SimpleAttribute discriminatorAttribute;
|
||||
|
||||
/**
|
||||
* The embedded classes for this entity
|
||||
*/
|
||||
@ -187,6 +192,10 @@ public SimpleAttribute getVersionAttribute() {
|
||||
return versionAttribute;
|
||||
}
|
||||
|
||||
public SimpleAttribute getDiscriminatorAttribute() {
|
||||
return discriminatorAttribute;
|
||||
}
|
||||
|
||||
public Iterable<AssociationAttribute> getAssociationAttributes() {
|
||||
return associationAttributeMap.values();
|
||||
}
|
||||
@ -449,6 +458,9 @@ private void createMappedProperty(Member member, ResolvedTypeWithMembers resolve
|
||||
} else if (attribute.isVersioned()) {
|
||||
// todo - error handling in case there are multiple version attributes
|
||||
versionAttribute = attribute;
|
||||
} else if (attribute.isDiscriminator()) {
|
||||
// todo - error handling in case there are multiple discriminator attributes
|
||||
versionAttribute = attribute;
|
||||
}
|
||||
else {
|
||||
simpleAttributeMap.put( attributeName, attribute );
|
||||
|
@ -117,10 +117,6 @@ private String determineExplicitEntityName() {
|
||||
return JandexHelper.getValue( jpaEntityAnnotation, "name", String.class );
|
||||
}
|
||||
|
||||
public InheritanceType getInheritanceType() {
|
||||
return inheritanceType;
|
||||
}
|
||||
|
||||
public IdType getIdType() {
|
||||
return idType;
|
||||
}
|
||||
|
@ -75,7 +75,11 @@ public SingularAttributeSource getVersioningAttributeSource() {
|
||||
|
||||
@Override
|
||||
public SingularAttributeSource getDiscriminatorAttributeSource() {
|
||||
return null; //To change body of implemented methods use File | Settings | File Templates.
|
||||
SingularAttributeSource attributeSource = null;
|
||||
if ( getEntityClass().getDiscriminatorAttribute() != null ) {
|
||||
attributeSource = new SingularAttributeSourceImpl( getEntityClass().getVersionAttribute() );
|
||||
}
|
||||
return attributeSource;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -89,28 +89,28 @@ public interface EntitySource extends SubclassEntityContainer, AttributeSourceCo
|
||||
*
|
||||
* @return The custom persister class name
|
||||
*/
|
||||
public String getCustomPersisterClassName();
|
||||
public String getCustomPersisterClassName();
|
||||
|
||||
/**
|
||||
* Is this entity lazy (proxyable)?
|
||||
*
|
||||
* @return {@code true} indicates the entity is lazy; {@code false} non-lazy.
|
||||
*/
|
||||
public boolean isLazy();
|
||||
public boolean isLazy();
|
||||
|
||||
/**
|
||||
* For {@link #isLazy() lazy} entities, obtain the interface to use in constructing its proxies.
|
||||
*
|
||||
* @return The proxy interface name
|
||||
*/
|
||||
public String getProxy();
|
||||
public String getProxy();
|
||||
|
||||
/**
|
||||
* Obtain the batch-size to be applied when initializing proxies of this entity.
|
||||
*
|
||||
* @return THe batch-size.
|
||||
*/
|
||||
public int getBatchSize();
|
||||
public int getBatchSize();
|
||||
|
||||
/**
|
||||
* Is the entity abstract?
|
||||
@ -119,28 +119,28 @@ public interface EntitySource extends SubclassEntityContainer, AttributeSourceCo
|
||||
*
|
||||
* @return {@code true} indicates the entity is abstract; {@code false} non-abstract.
|
||||
*/
|
||||
public boolean isAbstract();
|
||||
public boolean isAbstract();
|
||||
|
||||
/**
|
||||
* Did the source specify dynamic inserts?
|
||||
*
|
||||
* @return {@code true} indicates dynamic inserts will be used; {@code false} otherwise.
|
||||
*/
|
||||
public boolean isDynamicInsert();
|
||||
public boolean isDynamicInsert();
|
||||
|
||||
/**
|
||||
* Did the source specify dynamic updates?
|
||||
*
|
||||
* @return {@code true} indicates dynamic updates will be used; {@code false} otherwise.
|
||||
*/
|
||||
public boolean isDynamicUpdate();
|
||||
public boolean isDynamicUpdate();
|
||||
|
||||
/**
|
||||
* Did the source specify to perform selects to decide whether to perform (detached) updates?
|
||||
*
|
||||
* @return {@code true} indicates selects will be done; {@code false} otherwise.
|
||||
*/
|
||||
public boolean isSelectBeforeUpdate();
|
||||
public boolean isSelectBeforeUpdate();
|
||||
|
||||
/**
|
||||
* Obtain the name of a named-query that will be used for loading this entity
|
||||
@ -183,7 +183,4 @@ public interface EntitySource extends SubclassEntityContainer, AttributeSourceCo
|
||||
* @return The meta-attribute sources.
|
||||
*/
|
||||
public Iterable<MetaAttributeSource> metaAttributes();
|
||||
|
||||
// public List<XMLFetchProfileElement> getFetchProfile();
|
||||
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ public void testNoInheritance() {
|
||||
}
|
||||
|
||||
@Test
|
||||
//@Resources(annotatedClasses = { RootOfSingleTableInheritance.class, SubclassOfSingleTableInheritance.class })
|
||||
// @Resources(annotatedClasses = { RootOfSingleTableInheritance.class, SubclassOfSingleTableInheritance.class })
|
||||
@FailureExpected(jiraKey = "HHH-6447", message = "Work in progress")
|
||||
public void testDiscriminatorValue() {
|
||||
EntityBinding entityBinding = getEntityBinding( SubclassOfSingleTableInheritance.class );
|
||||
|
Loading…
x
Reference in New Issue
Block a user