public final class

NamedQueryLoader

extends Object
implements UniqueEntityLoader
java.lang.Object
   ↳ org.hibernate.persister.entity.NamedQueryLoader

Class Overview

Not really a Loader, just a wrapper around a named query.

Summary

Public Constructors
NamedQueryLoader(String queryName, EntityPersister persister)
Public Methods
Object load(Serializable id, Object optionalObject, SessionImplementor session, LockOptions lockOptions)
Load an entity instance by id.
Object load(Serializable id, Object optionalObject, SessionImplementor session)
Load an entity instance.
[Expand]
Inherited Methods
From class java.lang.Object
From interface org.hibernate.loader.entity.UniqueEntityLoader

Public Constructors

public NamedQueryLoader (String queryName, EntityPersister persister)

Public Methods

public Object load (Serializable id, Object optionalObject, SessionImplementor session, LockOptions lockOptions)

Load an entity instance by id. If optionalObject is supplied (non-null, the entity state is loaded into that object instance instead of instantiating a new one.

Parameters
id The id to be loaded
optionalObject The (optional) entity instance in to which to load the state
session The session from which the request originated
lockOptions The lock options.
Returns
  • The loaded entity

public Object load (Serializable id, Object optionalObject, SessionImplementor session)

Load an entity instance. If optionalObject is supplied, load the entity state into the given (uninitialized) object.