ObjectDB Database Search

151-200 of 200 results

jakarta.persistence.MapKeyJoinColumns

(JPA) 2.0 Annotation Elements MapKeyJoinColumn[] value (Required) The map key join columns

jakarta.persistence.Entity

the associated entity , and a many-to-many association usually maps to a join table . Every entity

jakarta.persistence.DiscriminatorColumn

Jakarta Persistence (JPA) Annotation Type jakarta.persistence.DiscriminatorColumn Implemented Interfaces: Annotation Target: Type Specifies the discriminator column for the SINGLE_TABLE and JOINED inheritance mapping strategies . The mapping strategy and discriminator column are only specified

jakarta.persistence.EntityNotFoundException

and the persistence context has been joined to it, will be marked for rollback. See Also: EntityManager

jakarta.persistence.EntityExistsException

, if one is active and the persistence context has been joined to it, will be marked for rollback

jakarta.persistence.criteria.AbstractQuery

own joins ). All queries may have: a conjunction of restrictions. Since: Jakarta Persistence (JPA) 2.0

jakarta.persistence.NamedQuery

and the persistence context joined to the transaction. Default: LockModeType.NONE Since: Jakarta Persistence (JPA) 2

jakarta.persistence.OneToOne

to a join table using the JoinTable annotation. The OneToOne annotation may be used within an embeddable

jakarta.persistence.PersistenceException

, if one is active and if the persistence context has been joined to it, to be marked for rollback

jakarta.persistence.PersistenceContext

whether the persistence context must be explicitly joined to the current transaction by means of the EntityManager

jakarta.persistence.PersistenceContext.synchronization

Jakarta Persistence (JPA) Method in jakarta.persistence.PersistenceContext SynchronizationType synchronization (Optional) Specifies whether the persistence context is always automatically synchronized with the current transaction or whether the persistence context must be explicitly joined

jakarta.persistence.criteria.CollectionJoin.getModel()

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.CollectionJoin CollectionAttribute getModel() Return the metamodel representation for the collection attribute. Returns: metamodel type representing the Collection that is the target of the join . Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.SetJoin.getModel()

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.SetJoin SetAttribute getModel() Return the metamodel representation for the set attribute. Returns: metamodel type representing the Set that is the target of the join . Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.TypedQuery.getResultStream()

other than NONE has been set and there is no transaction or the persistence context has not been joined

jakarta.persistence.TypedQuery.getSingleResult()

and there is no transaction or the persistence context has not been joined to the transaction. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.TypedQuery.getSingleResultOrNull()

and there is no transaction or the persistence context has not been joined to the transaction. Since: Jakarta Persistence (JPA) 3.2

jakarta.persistence.TypedQuery.getResultList()

been joined to the transaction. QueryTimeoutException - if the query execution exceeds the query

jakarta.persistence.criteria.ListJoin.getModel()

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.ListJoin ListAttribute getModel() Return the metamodel representation for the list attribute. Returns: metamodel type representing the List that is the target of the join . Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.MapJoin.getModel()

Jakarta Persistence (JPA) Method in jakarta.persistence.criteria.MapJoin MapAttribute getModel() Return the metamodel representation for the map attribute. Returns: metamodel type representing the Map that is the target of the join . Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.StoredProcedureQuery.executeUpdate()

back. TransactionRequiredException - if there is no transaction or the persistence context has not been joined

jakarta.persistence.ForeignKey.value

will generate a constraint whose update and delete actions it determines most appropriate for the join column

jakarta.persistence.EntityManager.joinTransaction()

Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager void joinTransaction() Indicate to the entity manager that a JTA transaction is active and join the persistence context to it. This method should be called on a JTA application managed entity manager that was created outside

jakarta.persistence.EntityManager.close()

is joined to an active transaction, the persistence context remains managed until the transaction completes

jakarta.persistence.EntityManager.lock(Object,LockModeType,LockOption...)

- if there is no transaction or if invoked on an entity manager which has not been joined to the current transaction. Since: Jakarta Persistence (JPA) 3.2

jakarta.persistence.EntityManager.refresh(Object,LockModeType)

on an extended entity manager that has not been joined to the current transaction and any lock mode other than NONE was specified. Since: Jakarta Persistence (JPA) 2.0

jakarta.persistence.EntityManager.lock(Object,LockModeType)

. TransactionRequiredException - if there is no transaction or if invoked on an entity manager which has not been joined

jakarta.persistence.EntityManager.lock(Object,LockModeType,Map)

. TransactionRequiredException - if there is no transaction or if invoked on an entity manager which has not been joined

jakarta.persistence.EntityManager.getLockMode(Object)

if the entity manager has not been joined to the current transaction. Since: Jakarta Persistence (JPA) 2.0

jakarta.persistence.EntityManager.refresh(Object,LockModeType,Map)

on an extended entity manager that has not been joined to the current transaction and any lock mode other than NONE was specified. Since: Jakarta Persistence (JPA) 2.0

jakarta.persistence.EntityManager.refresh(Object,RefreshOption...)

entity manager that has not been joined to the current transaction and any lock mode other than NONE was specified. Since: Jakarta Persistence (JPA) 3.2

jakarta.persistence.criteria.JoinType.INNER

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.criteria.JoinType INNER Inner join . Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.JoinType.LEFT

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.criteria.JoinType LEFT Left outer join . Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.criteria.JoinType.RIGHT

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.criteria.JoinType RIGHT Right outer join . Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.SynchronizationType.UNSYNCHRONIZED

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.SynchronizationType UNSYNCHRONIZED Persistence context must be explicitly joined to the current transaction Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.NamedQuery.lockMode

Jakarta Persistence (JPA) Method in jakarta.persistence.NamedQuery LockModeType lockMode (Optional) The lock mode type to use in query execution. If a lockMode other than LockModeType.NONE is specified, the query must be executed in a transaction and the persistence context joined

jakarta.persistence.MapKeyJoinColumn.referencedColumnName

Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyJoinColumn String referencedColumnName (Optional) The name of the column referenced by this foreign key column. The referenced column is in the table of the target entity. Default (only applies if single join column is being used

jakarta.persistence.MapKeyJoinColumns.value

Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyJoinColumns MapKeyJoinColumn[] value (Required) The map key join columns that are used to map to the entity that is the map key. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.JoinColumn.unique

to explicitly specify this for a join column that corresponds to a primary key

jakarta.persistence.JoinTable.name

Jakarta Persistence (JPA) Method in jakarta.persistence.JoinTable String name (Optional) The name of the join table. Defaults to the concatenated names of the two associated primary entity tables, separated by an underscore. Default: "" Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.JoinColumns.value

Jakarta Persistence (JPA) Method in jakarta.persistence.JoinColumns JoinColumn[] value The join columns that map the relationship. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.JoinTable.joinColumns

Jakarta Persistence (JPA) Method in jakarta.persistence.JoinTable JoinColumn[] joinColumns (Optional) The foreign key columns of the join table which reference the primary table of the entity owning the association. (I.e. the owning side of the association). Uses the same defaults as

jakarta.persistence.JoinTable.inverseJoinColumns

Jakarta Persistence (JPA) Method in jakarta.persistence.JoinTable JoinColumn[] inverseJoinColumns (Optional) The foreign key columns of the join table which reference the primary table of the entity that does not own the association. (I.e. the inverse side of the association). Uses the same

jakarta.persistence.SecondaryTable.pkJoinColumns

Jakarta Persistence (JPA) Method in jakarta.persistence.SecondaryTable PrimaryKeyJoinColumn[] pkJoinColumns (Optional) The columns that are used to join with the primary table. Defaults to the column(s) of the same name(s) as the primary key column(s) in the primary table. Default: {} Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.EntityManager.find(EntityGraph,Object,FindOption...)

other than NONE is specified or if invoked on an entity manager which has not been joined to the current

jakarta.persistence.EntityManager.flush()

has not been joined to the current transaction. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.EntityManager.find(Class,Object,LockModeType)

other than NONE is specified or if invoked on an entity manager which has not been joined to the current transaction

jakarta.persistence.EntityManager.find(Class,Object,LockModeType,Map)

which has not been joined to the current transaction and a lock mode other than NONE is specified. Since: Jakarta Persistence (JPA) 2.0

jakarta.persistence.EntityManager.find(Class,Object,FindOption...)

other than NONE is specified or if invoked on an entity manager which has not been joined to the current

jakarta.persistence.PrimaryKeyJoinColumn.foreignKey

Jakarta Persistence (JPA) Method in jakarta.persistence.PrimaryKeyJoinColumn ForeignKey foreignKey (Optional) Used to specify or control the generation of a foreign key constraint for the primary key join column when table generation is in effect. If this element is not specified, the persistence

jakarta.persistence.PrimaryKeyJoinColumn.name

Jakarta Persistence (JPA) Method in jakarta.persistence.PrimaryKeyJoinColumn String name (Optional) The name of the primary key column of the current table. Defaults to the same name as the primary key column of the primary table of the superclass ( JOINED mapping strategy); the same name as