Java org.hibernate.proxy LazyInitializer fields, constructors, methods, implement or subclass

Example usage for Java org.hibernate.proxy LazyInitializer fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.hibernate.proxy LazyInitializer.

The text is from its open source code.

Implementation

org.hibernate.proxy.LazyInitializer has the following implementations.
Click this link to see all its implementation.

Constructor

Method

StringgetEntityName()
The entity-name of the entity our owning proxy represents.
SerializablegetIdentifier()
Retrieve the identifier value for the entity our owning proxy represents.
ObjectgetImplementation()
Return the underlying persistent object, initializing if necessary
ClassgetPersistentClass()
Get the actual class of the entity.
SharedSessionContractImplementorgetSession()
Get the session to which this proxy is associated, or null if it is not attached.
voidinitialize()
Initialize the proxy, fetching the target entity if necessary.
booleanisReadOnlySettingAvailable()
Is the proxy's read-only/modifiable setting available?
booleanisUninitialized()
Is the proxy uninitialzed?
voidsetImplementation(Object target)
Initialize the proxy manually by injecting its target.
voidsetSession(SharedSessionContractImplementor session)
Associate the proxy with the given session.
voidunsetSession()
Unset this initializer's reference to session.