Uses of Interface
org.hibernate.boot.jaxb.mapping.spi.JaxbSingularAssociationAttribute
Packages that use JaxbSingularAssociationAttribute
-
Uses of JaxbSingularAssociationAttribute in org.hibernate.boot.jaxb.mapping.spi
Classes in org.hibernate.boot.jaxb.mapping.spi that implement JaxbSingularAssociationAttributeModifier and TypeClassDescriptionclass@Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface ManyToOne { Class<?> targetEntity() default void.class; CascadeType[] cascade() default {}; FetchType fetch() default FetchType.EAGER; boolean optional() default true; } <p>Java class for many-to-one complex type</p>.class@Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface OneToOne { Class<?> targetEntity() default void.class; CascadeType[] cascade() default {}; FetchType fetch() default FetchType.EAGER; boolean optional() default true; String mappedBy() default ""; boolean orphanRemoval() default false; } <p>Java class for one-to-one complex type</p>.