Uses of Interface
org.apache.openejb.jee.jpa.RelationField
-
Packages that use RelationField Package Description org.apache.openejb.jee.jpa Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. -
-
Uses of RelationField in org.apache.openejb.jee.jpa
Classes in org.apache.openejb.jee.jpa that implement RelationField Modifier and Type Class Description classManyToManyTarget({METHOD, FIELD}) @Retention(RUNTIME) public @interface ManyToMany { Class targetEntity() default void.class; CascadeType[] cascade() default {}; FetchType fetch() default LAZY; String mappedBy() default ""; }classManyToOneTarget({METHOD, FIELD}) @Retention(RUNTIME) public @interface ManyToOne { Class targetEntity() default void.class; CascadeType[] cascade() default {}; FetchType fetch() default EAGER; boolean optional() default true; }classOneToManyTarget({METHOD, FIELD}) @Retention(RUNTIME) public @interface OneToMany { Class targetEntity() default void.class; CascadeType[] cascade() default {}; FetchType fetch() default LAZY; String mappedBy() default ""; }classOneToOneTarget({METHOD, FIELD}) @Retention(RUNTIME) public @interface OneToOne { Class targetEntity() default void.class; CascadeType[] cascade() default {}; FetchType fetch() default EAGER; boolean optional() default true; String mappedBy() default ""; boolean orphanRemoval() default false; }Fields in org.apache.openejb.jee.jpa declared as RelationField Modifier and Type Field Description protected RelationFieldManyToMany. relatedFieldprotected RelationFieldManyToOne. relatedFieldprotected RelationFieldOneToMany. relatedFieldprotected RelationFieldOneToOne. relatedFieldMethods in org.apache.openejb.jee.jpa that return RelationField Modifier and Type Method Description RelationFieldManyToMany. getRelatedField()This is only used for xml converters and will normally return null.RelationFieldManyToOne. getRelatedField()This is only used for xml converters and will normally return null.RelationFieldOneToMany. getRelatedField()This is only used for xml converters and will normally return null.RelationFieldOneToOne. getRelatedField()This is only used for xml converters and will normally return null.RelationFieldRelationField. getRelatedField()This is only used for xml converters and will normally return null.Methods in org.apache.openejb.jee.jpa that return types with arguments of type RelationField Modifier and Type Method Description Map<String,RelationField>Attributes. getRelationshipFieldMap()Methods in org.apache.openejb.jee.jpa with parameters of type RelationField Modifier and Type Method Description voidManyToMany. setRelatedField(RelationField value)Gets the field on the target entity for this relationship.voidManyToOne. setRelatedField(RelationField value)Gets the field on the target entity for this relationship.voidOneToMany. setRelatedField(RelationField value)Gets the field on the target entity for this relationship.voidOneToOne. setRelatedField(RelationField value)Gets the field on the target entity for this relationship.voidRelationField. setRelatedField(RelationField value)Gets the field on the target entity for this relationship.
-