Serialized Form


Package org.apache.openjpa.lib.conf

Class org.apache.openjpa.lib.conf.ConfigurationImpl extends java.lang.Object implements Serializable

Serialization Methods

readExternal

public void readExternal(java.io.ObjectInput in)
                  throws java.io.IOException,
                         java.lang.ClassNotFoundException
Implementation of the Externalizable interface to read from the properties written by ConfigurationImpl.writeExternal(java.io.ObjectOutput).

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeExternal

public void writeExternal(java.io.ObjectOutput out)
                   throws java.io.IOException
Implementation of the Externalizable interface to write the properties returned by ConfigurationImpl.toProperties(boolean).

Throws:
java.io.IOException

Package org.apache.openjpa.lib.jdbc

Class org.apache.openjpa.lib.jdbc.JDBCEvent extends java.util.EventObject implements Serializable

Serialized Fields

type

short type

time

long time

sql

java.lang.String sql

associatedEvent

JDBCEvent associatedEvent

Class org.apache.openjpa.lib.jdbc.ReportingSQLException extends java.sql.SQLException implements Serializable

Serialized Fields

_sqle

java.sql.SQLException _sqle

Package org.apache.openjpa.lib.rop

Class org.apache.openjpa.lib.rop.AbstractNonSequentialResultList extends AbstractResultList implements Serializable

Class org.apache.openjpa.lib.rop.AbstractResultList extends java.lang.Object implements Serializable

Class org.apache.openjpa.lib.rop.AbstractSequentialResultList extends AbstractResultList implements Serializable

Class org.apache.openjpa.lib.rop.EagerResultList extends ListResultList implements Serializable

Class org.apache.openjpa.lib.rop.LazyForwardResultList extends AbstractSequentialResultList implements Serializable

Serialization Methods

writeReplace

public java.lang.Object writeReplace()
                              throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException
Serialized Fields

_rop

ResultObjectProvider _rop

_list

java.util.List<E> _list

_state

int _state

_size

int _size

Class org.apache.openjpa.lib.rop.ListResultList extends AbstractResultList implements Serializable

Serialization Methods

writeReplace

public java.lang.Object writeReplace()
Serialized Fields

_list

java.util.List<E> _list

_closed

boolean _closed

Class org.apache.openjpa.lib.rop.RandomAccessResultList extends AbstractNonSequentialResultList implements Serializable

Serialization Methods

writeReplace

public java.lang.Object writeReplace()
                              throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException
Serialized Fields

_rop

ResultObjectProvider _rop

_rows

java.util.Map<K,V> _rows

_full

java.lang.Object[] _full

_requests

long _requests

_state

int _state

_size

int _size

Class org.apache.openjpa.lib.rop.SimpleResultList extends AbstractNonSequentialResultList implements Serializable

Serialization Methods

writeReplace

public java.lang.Object writeReplace()
                              throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException
Serialized Fields

_closed

boolean _closed

_size

int _size

Class org.apache.openjpa.lib.rop.SoftRandomAccessResultList extends RandomAccessResultList implements Serializable

Class org.apache.openjpa.lib.rop.WindowResultList extends AbstractNonSequentialResultList implements Serializable

Serialization Methods

writeReplace

public java.lang.Object writeReplace()
                              throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException
Serialized Fields

_window

java.lang.Object[] _window

_pos

int _pos

_rop

ResultObjectProvider _rop

_random

boolean _random

_state

int _state

_size

int _size

Package org.apache.openjpa.lib.util

Class org.apache.openjpa.lib.util.FormatPreservingProperties extends java.util.Properties implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

defaultEntryDelimiter

char defaultEntryDelimiter

addWhitespaceAfterDelimiter

boolean addWhitespaceAfterDelimiter

allowDuplicates

boolean allowDuplicates

insertTimestamp

boolean insertTimestamp

source

org.apache.openjpa.lib.util.FormatPreservingProperties.PropertySource source

newKeys

org.apache.commons.collections.set.ListOrderedSet newKeys

modifiedKeys

java.util.HashSet<E> modifiedKeys

Class org.apache.openjpa.lib.util.FormatPreservingProperties.DuplicateKeyException extends java.lang.RuntimeException implements Serializable

Class org.apache.openjpa.lib.util.LRUMap extends org.apache.commons.collections.map.LRUMap implements Serializable

Serialized Fields

_max

int _max

Class org.apache.openjpa.lib.util.Options extends TypedProperties implements Serializable

Class org.apache.openjpa.lib.util.ParseException extends org.apache.commons.lang.exception.NestableRuntimeException implements Serializable

Class org.apache.openjpa.lib.util.ReferenceHashMap extends org.apache.commons.collections.map.ReferenceMap implements Serializable

Serialized Fields

_maxSize

int _maxSize

Class org.apache.openjpa.lib.util.ReferenceHashSet extends java.lang.Object implements Serializable

Serialized Fields

_set

java.util.Set<E> _set

Class org.apache.openjpa.lib.util.TypedProperties extends java.util.Properties implements Serializable


Package org.apache.openjpa.lib.util.concurrent

Class org.apache.openjpa.lib.util.concurrent.ConcurrentHashMap extends java.util.AbstractMap implements Serializable

serialVersionUID: -6452706556724125778L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reconstitute the ConcurrentHashMap instance from a stream(i.e., deserialize it).

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
Save the state of the ConcurrentHashMap instance to a stream (i.e., serialize it).

Serial Data:
The capacity of the ConcurrentHashMap(the length of the bucket array) is emitted(int), followed by the size of the ConcurrentHashMap(the number of key-value mappings), followed by the key (Object) and value(Object) for each key-value mapping represented by the ConcurrentHashMap The key-value mappings are emitted in the order that they are returned by entrySet().iterator().
Throws:
java.io.IOException
Serialized Fields

threshold

int threshold
The next size value at which to resize(capacity * load factor).

 

loadFactor

float loadFactor
The load factor for the hash table.

 

randomEntry

int randomEntry
Spread "random" removes and iteration.


maxSize

int maxSize
Maximum entries.

Class org.apache.openjpa.lib.util.concurrent.ConcurrentHashSet extends java.lang.Object implements Serializable

Serialized Fields

_set

java.util.Set<E> _set

Class org.apache.openjpa.lib.util.concurrent.ConcurrentLinkedQueue extends org.apache.openjpa.lib.util.concurrent.AbstractQueue implements Serializable

serialVersionUID: 196745693267521676L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reconstitute the Queue instance from a stream(that is, deserialize it).

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
Save the state to a stream(that is, serialize it).

Serial Data:
All of the elements(each an E) in the proper order, followed by a null
Throws:
java.io.IOException
Serialized Fields

headLock

java.lang.Object headLock

tailLock

java.lang.Object tailLock

Class org.apache.openjpa.lib.util.concurrent.ConcurrentReferenceHashSet extends java.lang.Object implements Serializable

Serialized Fields

_set

java.util.Set<E> _set

Class org.apache.openjpa.lib.util.concurrent.CopyOnWriteArrayList extends java.lang.Object implements Serializable

serialVersionUID: 8673264195747942595L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Throws:
java.io.IOException

Class org.apache.openjpa.lib.util.concurrent.CopyOnWriteArraySet extends org.apache.openjpa.lib.util.concurrent.AbstractSet implements Serializable

serialVersionUID: 5457747651344034263L

Serialized Fields

al

CopyOnWriteArrayList al

Class org.apache.openjpa.lib.util.concurrent.ReentrantLock extends java.lang.Object implements Serializable

serialVersionUID: 7373984872572414699L

Serialized Fields

sync

org.apache.openjpa.lib.util.concurrent.ReentrantLock.Sync sync

Class org.apache.openjpa.lib.util.concurrent.TimeUnit extends java.lang.Object implements Serializable

Serialized Fields

index

int index
The index of this unit. This value is no longer used in this version of this class, but is retained for serialization compatibility with previous version.


name

java.lang.String name
name of this unit



Copyright © 2006 Apache Software Foundation. All Rights Reserved.