Serialized Form


Package com.avaje.ebean

Class com.avaje.ebean.InvalidValue extends Object implements Serializable

serialVersionUID: 2408556605456324913L

Serialized Fields

beanType

String beanType

propertyName

String propertyName

validatorKey

String validatorKey

value

Object value

children

InvalidValue[] children

validatorAttributes

Object[] validatorAttributes

message

String message

Class com.avaje.ebean.OrderBy extends Object implements Serializable

serialVersionUID: 9157089257745730539L

Serialized Fields

list

List<E> list

Class com.avaje.ebean.OrderBy.Property extends Object implements Serializable

serialVersionUID: 1546009780322478077L

Serialized Fields

property

String property

ascending

boolean ascending

Class com.avaje.ebean.ValidationException extends javax.persistence.PersistenceException implements Serializable

serialVersionUID: -6185355529565362494L

Serialized Fields

invalid

InvalidValue invalid

Package com.avaje.ebean.bean

Class com.avaje.ebean.bean.CallStack extends Object implements Serializable

serialVersionUID: -8590644046907438579L

Serialized Fields

zeroHash

String zeroHash

pathHash

String pathHash

callStack

StackTraceElement[] callStack

Class com.avaje.ebean.bean.EntityBeanIntercept extends Object implements Serializable

serialVersionUID: -3664031775464862648L

Serialized Fields

beanLoaderIndex

int beanLoaderIndex

ebeanServerName

String ebeanServerName

owner

EntityBean owner
The actual entity bean that 'owns' this intercept.


parentBean

Object parentBean
The parent bean by relationship (1-1 or 1-M).


loaded

boolean loaded
true if the bean properties have been loaded. false if it is a reference bean (will lazy load etc).


disableLazyLoad

boolean disableLazyLoad
Flag set to disable lazy loading - typically for SQL "report" type entity beans.


intercepting

boolean intercepting
Set true when loaded or reference. Used to bypass interception when created by user code.


state

int state
The state of the Bean (DEFAULT,UDPATE,READONLY,SHARED).


useCache

boolean useCache
set to true if the lazy loading should use the L2 cache.


oldValues

Object oldValues
The bean as it was before it was modified. Null if no non-transient setters have been called.


loadedProps

Set<E> loadedProps
Used when a bean is partially filled.


changedProps

HashSet<E> changedProps
Set of changed properties.


lazyLoadProperty

String lazyLoadProperty

Class com.avaje.ebean.bean.ObjectGraphNode extends Object implements Serializable

serialVersionUID: 2087081778650228996L

Serialized Fields

originQueryPoint

ObjectGraphOrigin originQueryPoint
Identifies the origin.


path

String path
The path relative to the root.

Class com.avaje.ebean.bean.ObjectGraphOrigin extends Object implements Serializable

serialVersionUID: 410937765287968707L

Serialized Fields

callStack

CallStack callStack

key

String key

beanType

String beanType

Package com.avaje.ebean.common

Class com.avaje.ebean.common.AbstractBeanCollection extends Object implements Serializable

serialVersionUID: 3365725236140187588L

Serialized Fields

state

int state
The state (DEFAULT, READONLY or SHARED).


loaderIndex

int loaderIndex

ebeanServerName

String ebeanServerName

ownerBean

Object ownerBean
The owning bean (used for lazy fetch).


propertyName

String propertyName
The name of this property in the owning bean (used for lazy fetch).


finishedFetch

boolean finishedFetch
Can be false when a background thread is used to continue the fetch the rows. It will set this to true when it is finished. If no background thread is used then this should already be true.


hasMoreRows

boolean hasMoreRows
Flag set to true if rows are limited by firstRow maxRows and more rows exist. For use by client to enable 'next' for paging.


modifyHolder

com.avaje.ebean.common.ModifyHolder<E> modifyHolder

modifyAddListening

boolean modifyAddListening

modifyRemoveListening

boolean modifyRemoveListening

modifyListening

boolean modifyListening

Class com.avaje.ebean.common.BeanList extends AbstractBeanCollection<E> implements Serializable

Serialization Methods

readResolve

Object readResolve()
             throws ObjectStreamException
Throws:
ObjectStreamException

writeReplace

Object writeReplace()
              throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

list

List<E> list
The underlying List implementation.

Class com.avaje.ebean.common.BeanMap extends AbstractBeanCollection<E> implements Serializable

Serialization Methods

readResolve

Object readResolve()
             throws ObjectStreamException
Throws:
ObjectStreamException

writeReplace

Object writeReplace()
              throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

map

Map<K,V> map
The underlying map implementation.

Class com.avaje.ebean.common.BeanSet extends AbstractBeanCollection<E> implements Serializable

Serialization Methods

readResolve

Object readResolve()
             throws ObjectStreamException
Throws:
ObjectStreamException

writeReplace

Object writeReplace()
              throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

set

Set<E> set
The underlying Set implementation.


Package com.avaje.ebean.meta

Class com.avaje.ebean.meta.MetaAutoFetchStatistic extends Object implements Serializable

serialVersionUID: -6640406753257176803L

Serialized Fields

id

String id

origin

ObjectGraphOrigin origin

beanType

String beanType

counter

int counter

queryStats

List<E> queryStats

nodeUsageStats

List<E> nodeUsageStats

Class com.avaje.ebean.meta.MetaAutoFetchStatistic.NodeUsageStats extends Object implements Serializable

serialVersionUID: 1786787832374844739L

Serialized Fields

path

String path

profileCount

int profileCount

profileUsedCount

int profileUsedCount

usedProperties

String[] usedProperties

Class com.avaje.ebean.meta.MetaAutoFetchStatistic.QueryStats extends Object implements Serializable

serialVersionUID: -5517935732867671387L

Serialized Fields

path

String path

exeCount

int exeCount

totalBeanLoaded

int totalBeanLoaded

totalMicros

int totalMicros

Class com.avaje.ebean.meta.MetaAutoFetchTunedQueryInfo extends Object implements Serializable

serialVersionUID: 3119991928889170215L

Serialized Fields

id

String id

beanType

String beanType

origin

ObjectGraphOrigin origin
The profile query point (call stack and query).


tunedDetail

String tunedDetail
The tuned query details with joins and properties.


profileCount

int profileCount
The number of times profiling has been collected for this query point.


tunedCount

int tunedCount
The number of queries tuned by this info.


lastTuneTime

long lastTuneTime

Class com.avaje.ebean.meta.MetaQueryStatistic extends Object implements Serializable

serialVersionUID: -8746524372894472583L

Serialized Fields

autofetchTuned

boolean autofetchTuned

beanType

String beanType

origQueryPlanHash

int origQueryPlanHash
The original query plan hash (calculated prior to autofetch tuning).


finalQueryPlanHash

int finalQueryPlanHash
The final query plan hash (calculated after to autofetch tuning).


sql

String sql

executionCount

int executionCount

totalLoadedBeans

int totalLoadedBeans

totalTimeMicros

int totalTimeMicros

collectionStart

long collectionStart

lastQueryTime

long lastQueryTime

avgTimeMicros

int avgTimeMicros

avgLoadedBeans

int avgLoadedBeans

Package com.avaje.ebean.text

Class com.avaje.ebean.text.TextException extends RuntimeException implements Serializable

serialVersionUID: 1601310159486033148L


Package com.avaje.ebean.validation.factory

Class com.avaje.ebean.validation.factory.EmailValidation extends Object implements Serializable

serialVersionUID: 2664585768077565394L

Serialized Fields

localPattern

Pattern localPattern



Copyright © 2010. All Rights Reserved.