Uses of Interface
org.hibernate.boot.jaxb.mapping.spi.JaxbAssociationAttribute
Packages that use JaxbAssociationAttribute
-
Uses of JaxbAssociationAttribute in org.hibernate.boot.jaxb.mapping.spi
Subinterfaces of JaxbAssociationAttribute in org.hibernate.boot.jaxb.mapping.spiClasses in org.hibernate.boot.jaxb.mapping.spi that implement JaxbAssociationAttributeModifier and TypeClassDescriptionclass@Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface ManyToMany { Class<?> targetEntity() default void.class; CascadeType[] cascade() default {}; FetchType fetch() default FetchType.LAZY; String mappedBy() default ""; } <p>Java class for many-to-many complex type</p>.class@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 OneToMany { Class<?> targetEntity() default void.class; CascadeType[] cascade() default {}; FetchType fetch() default FetchType.LAZY; String mappedBy() default ""; boolean orphanRemoval() default false; } <p>Java class for one-to-many 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>.