Serialized Form


Package org.springframework.aop.framework

Class org.springframework.aop.framework.AdvisedSupport extends ProxyConfig implements Serializable

Serialization Methods

readResolve

protected java.lang.Object readResolve()
                                throws java.io.ObjectStreamException
Used to initialize transient state.


writeReplace

protected java.lang.Object writeReplace()
                                 throws java.io.ObjectStreamException
Serialize a copy of the state of this class, ignoring subclass state.

Serialized Fields

targetSource

TargetSource targetSource
Package-protected to allow direct access for efficiency


advisors

java.util.List advisors
List of Advice. If an Interceptor is added, it will be wrapped in an Advice before being added to this List.


advisorArray

Advisor[] advisorArray
Array updated on changes to the advisors list, which is easier to manipulate internally


interfaces

java.util.Set interfaces
Interfaces to be implemented by the proxy

Class org.springframework.aop.framework.AopConfigException extends NestedRuntimeException implements Serializable

Class org.springframework.aop.framework.Cglib2AopProxy extends java.lang.Object implements Serializable

Serialized Fields

advised

AdvisedSupport advised
Config used to configure this proxy

Class org.springframework.aop.framework.ProxyConfig extends java.lang.Object implements Serializable

Serialized Fields

proxyTargetClass

boolean proxyTargetClass

optimize

boolean optimize

opaque

boolean opaque

exposeProxy

boolean exposeProxy
Should proxies obtained from this configuration expose the AOP proxy for the AopContext class to retrieve for targets? The default is false, as enabling this property may impair performance.


frozen

boolean frozen
Is this config frozen: that is, should it be impossible to change advice. Default is not frozen.

Class org.springframework.aop.framework.ProxyFactory extends AdvisedSupport implements Serializable

Class org.springframework.aop.framework.ProxyFactoryBean extends AdvisedSupport implements Serializable

Serialized Fields

interceptorNames

java.lang.String[] interceptorNames
Names of Advisor and Advice beans in the factory. Default is for globals expansion only.


singleton

boolean singleton

advisorAdapterRegistry

AdvisorAdapterRegistry advisorAdapterRegistry

beanFactory

BeanFactory beanFactory
Owning bean factory, which cannot be changed after this object is initialized.


targetName

java.lang.String targetName
Name of the target or TargetSource bean. Null if the TargetSource is not specified in the interceptorNames list.


singletonInstance

java.lang.Object singletonInstance
If this is a singleton, the cached singleton proxy instance


Package org.springframework.aop.framework.adapter

Class org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor extends java.lang.Object implements Serializable

Serialized Fields

advice

AfterReturningAdvice advice

Class org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor extends java.lang.Object implements Serializable

Serialized Fields

advice

MethodBeforeAdvice advice

Class org.springframework.aop.framework.adapter.UnknownAdviceTypeException extends java.lang.IllegalArgumentException implements Serializable


Package org.springframework.aop.framework.autoproxy

Class org.springframework.aop.framework.autoproxy.AbstractAdvisorAutoProxyCreator extends AbstractAutoProxyCreator implements Serializable

Class org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator extends ProxyConfig implements Serializable

Serialized Fields

logger

org.apache.commons.logging.Log logger

order

int order
Default value is same as non-ordered


advisorAdapterRegistry

AdvisorAdapterRegistry advisorAdapterRegistry
Default is global AdvisorAdapterRegistry


interceptorNames

java.lang.String[] interceptorNames
Names of common interceptors. We must use bean name rather than object references to handle prototype advisors/interceptors. Default is the empty array: no common interceptors.


applyCommonInterceptorsFirst

boolean applyCommonInterceptorsFirst

customTargetSourceCreators

java.util.List customTargetSourceCreators

owningBeanFactory

BeanFactory owningBeanFactory

Class org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator extends AbstractAutoProxyCreator implements Serializable

Serialized Fields

beanNames

java.util.List beanNames

Class org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator extends AbstractAdvisorAutoProxyCreator implements Serializable

Serialized Fields

usePrefix

boolean usePrefix

advisorBeanNamePrefix

java.lang.String advisorBeanNamePrefix


Package org.springframework.aop.interceptor

Class org.springframework.aop.interceptor.ClassLoaderAnalyzerInterceptor extends java.lang.Object implements Serializable

Class org.springframework.aop.interceptor.ConcurrencyThrottleInterceptor extends java.lang.Object implements Serializable

Serialized Fields

concurrencyLimit

int concurrencyLimit

concurrencyCount

int concurrencyCount

Class org.springframework.aop.interceptor.DebugInterceptor extends java.lang.Object implements Serializable

Serialized Fields

count

int count

Class org.springframework.aop.interceptor.ExposeInvocationInterceptor extends java.lang.Object implements Serializable

Serialization Methods

readResolve

private java.lang.Object readResolve()
                              throws java.io.ObjectStreamException
Required to support serialization. Replaces with canonical instance on deserialization, protecting Singleton pattern. Alternative to overriding equals().

Class org.springframework.aop.interceptor.PerformanceMonitorInterceptor extends java.lang.Object implements Serializable

Class org.springframework.aop.interceptor.TraceInterceptor extends java.lang.Object implements Serializable


Package org.springframework.aop.support

Class org.springframework.aop.support.AbstractRegexpMethodPointcut extends StaticMethodMatcherPointcut implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream ois)
                 throws java.io.IOException
Serialized Fields

patterns

java.lang.String[] patterns
Regular expressions to match

Class org.springframework.aop.support.ComposablePointcut extends java.lang.Object implements Serializable

Serialized Fields

classFilter

ClassFilter classFilter

methodMatcher

MethodMatcher methodMatcher

Class org.springframework.aop.support.ControlFlowPointcut extends java.lang.Object implements Serializable

Serialized Fields

clazz

java.lang.Class clazz

methodName

java.lang.String methodName

evaluations

int evaluations

Class org.springframework.aop.support.DefaultIntroductionAdvisor extends java.lang.Object implements Serializable

Serialized Fields

order

int order

advice

org.aopalliance.aop.Advice advice

interfaces

java.util.Set interfaces

Class org.springframework.aop.support.DefaultPointcutAdvisor extends java.lang.Object implements Serializable

Serialized Fields

order

int order

pointcut

Pointcut pointcut

advice

org.aopalliance.aop.Advice advice

Class org.springframework.aop.support.DelegatingIntroductionInterceptor extends IntroductionInfoSupport implements Serializable

Serialized Fields

delegate

java.lang.Object delegate
Object that actually implements the interfaces. May be "this" if a subclass implements the introduced interfaces.

Class org.springframework.aop.support.DynamicMethodMatcherPointcutAdvisor extends DynamicMethodMatcherPointcut implements Serializable

Serialized Fields

order

int order

advice

org.aopalliance.aop.Advice advice

Class org.springframework.aop.support.IntroductionInfoSupport extends java.lang.Object implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream ois)
                 throws java.io.IOException
This method is implemented only to restore the logger. We don't make the logger static as that would mean that subclasses would use this class's log category.

Serialized Fields

publishedInterfaces

java.util.Set publishedInterfaces
Set of Class

Class org.springframework.aop.support.JdkRegexpMethodPointcut extends AbstractRegexpMethodPointcut implements Serializable

Class org.springframework.aop.support.NameMatchMethodPointcut extends StaticMethodMatcherPointcut implements Serializable

Serialized Fields

mappedNames

java.util.List mappedNames

Class org.springframework.aop.support.NameMatchMethodPointcutAdvisor extends NameMatchMethodPointcut implements Serializable

Serialized Fields

order

int order

advice

org.aopalliance.aop.Advice advice

Class org.springframework.aop.support.Perl5RegexpMethodPointcut extends AbstractRegexpMethodPointcut implements Serializable

Class org.springframework.aop.support.RegexpMethodPointcut extends Perl5RegexpMethodPointcut implements Serializable

Class org.springframework.aop.support.RegexpMethodPointcutAdvisor extends DefaultPointcutAdvisor implements Serializable

Class org.springframework.aop.support.RootClassFilter extends java.lang.Object implements Serializable

Serialized Fields

clazz

java.lang.Class clazz

Class org.springframework.aop.support.StaticMethodMatcherPointcutAdvisor extends StaticMethodMatcherPointcut implements Serializable

Serialized Fields

order

int order

advice

org.aopalliance.aop.Advice advice


Package org.springframework.aop.target

Class org.springframework.aop.target.AbstractPoolingTargetSource extends AbstractPrototypeBasedTargetSource implements Serializable

Serialized Fields

maxSize

int maxSize
The size of the pool

Class org.springframework.aop.target.AbstractPrototypeBasedTargetSource extends java.lang.Object implements Serializable

Serialization Methods

writeReplace

protected java.lang.Object writeReplace()
                                 throws java.io.ObjectStreamException
Replaces this object with a SingletonTargetSource on serialization. Protected as otherwise it won't be invoked for subclasses. (The writeReplace() method must be visible to the class being serialized.)

With this implementation of this method, there is no need to mark non-serializable fields in this class or subclasses as transient.

Serialized Fields

logger

org.apache.commons.logging.Log logger

targetBeanName

java.lang.String targetBeanName
Name of the target bean we will create on each invocation


owningBeanFactory

BeanFactory owningBeanFactory
BeanFactory that owns this TargetSource. We need to hold onto this reference so that we can create new prototype instances as necessary.


targetClass

java.lang.Class targetClass
Class of the target

Class org.springframework.aop.target.CommonsPoolTargetSource extends AbstractPoolingTargetSource implements Serializable

Serialized Fields

pool

org.apache.commons.pool.ObjectPool pool
Jakarta Commons object pool

Class org.springframework.aop.target.EmptyTargetSource extends java.lang.Object implements Serializable

Serialization Methods

readResolve

private java.lang.Object readResolve()
                              throws java.io.ObjectStreamException
Required to support serialization. Replaces with canonical instance on deserialization, protecting Singleton pattern. Alternative to overriding equals().

Class org.springframework.aop.target.HotSwappableTargetSource extends java.lang.Object implements Serializable

Serialized Fields

target

java.lang.Object target
Target cached and invoked using reflection

Class org.springframework.aop.target.PrototypeTargetSource extends AbstractPrototypeBasedTargetSource implements Serializable

Class org.springframework.aop.target.SingletonTargetSource extends java.lang.Object implements Serializable

Serialized Fields

target

java.lang.Object target
Target cached and invoked using reflection

Class org.springframework.aop.target.ThreadLocalTargetSource extends AbstractPrototypeBasedTargetSource implements Serializable

Serialized Fields

targetInThread

java.lang.ThreadLocal targetInThread
ThreadLocal holding the target associated with the current thread. Unlike most ThreadLocals, which are static, this variable is meant to be per thread per instance of the ThreadLocalTargetSource class.


targetSet

java.util.Set targetSet
Set of managed targets, enabling us to keep track of the targets we've created.


invocations

int invocations

hits

int hits


Package org.springframework.beans

Class org.springframework.beans.BeansException extends NestedRuntimeException implements Serializable

Class org.springframework.beans.FatalBeanException extends BeansException implements Serializable

Class org.springframework.beans.InvalidPropertyException extends FatalBeanException implements Serializable

Serialized Fields

beanClass

java.lang.Class beanClass

propertyName

java.lang.String propertyName

Class org.springframework.beans.MethodInvocationException extends PropertyAccessException implements Serializable

Class org.springframework.beans.MutablePropertyValues extends java.lang.Object implements Serializable

Serialized Fields

propertyValueList

java.util.List propertyValueList
List of PropertyValue objects


propertyValueArray

PropertyValue[] propertyValueArray
Cached PropertyValues for quicker access. Updated on writes.

Class org.springframework.beans.NotReadablePropertyException extends InvalidPropertyException implements Serializable

Class org.springframework.beans.NotWritablePropertyException extends InvalidPropertyException implements Serializable

Class org.springframework.beans.NullValueInNestedPathException extends InvalidPropertyException implements Serializable

Class org.springframework.beans.PropertyAccessException extends BeansException implements Serializable

Serialized Fields

propertyChangeEvent

java.beans.PropertyChangeEvent propertyChangeEvent

Class org.springframework.beans.PropertyAccessExceptionsException extends BeansException implements Serializable

Serialized Fields

beanWrapper

BeanWrapper beanWrapper
BeanWrapper wrapping the target object for binding


propertyAccessExceptions

PropertyAccessException[] propertyAccessExceptions
List of PropertyAccessException objects

Class org.springframework.beans.PropertyValue extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
Property name


value

java.lang.Object value
Value of the property

Class org.springframework.beans.TypeMismatchException extends PropertyAccessException implements Serializable

Serialized Fields

requiredType

java.lang.Class requiredType


Package org.springframework.beans.factory

Class org.springframework.beans.factory.BeanCreationException extends FatalBeanException implements Serializable

Class org.springframework.beans.factory.BeanCurrentlyInCreationException extends BeanCreationException implements Serializable

Class org.springframework.beans.factory.BeanDefinitionStoreException extends FatalBeanException implements Serializable

Class org.springframework.beans.factory.BeanInitializationException extends FatalBeanException implements Serializable

Class org.springframework.beans.factory.BeanIsAbstractException extends BeanCreationException implements Serializable

Class org.springframework.beans.factory.BeanIsNotAFactoryException extends BeanNotOfRequiredTypeException implements Serializable

Class org.springframework.beans.factory.BeanNotOfRequiredTypeException extends BeansException implements Serializable

Serialized Fields

name

java.lang.String name
The name of the instance that was of the wrong type


requiredType

java.lang.Class requiredType
The required type


actualInstance

java.lang.Object actualInstance
The offending instance

Class org.springframework.beans.factory.FactoryBeanCircularReferenceException extends BeanCreationException implements Serializable

Class org.springframework.beans.factory.NoSuchBeanDefinitionException extends BeansException implements Serializable

Serialized Fields

beanName

java.lang.String beanName
Name of the missing bean


beanType

java.lang.Class beanType
Required bean type

Class org.springframework.beans.factory.UnsatisfiedDependencyException extends BeanCreationException implements Serializable


Package org.springframework.beans.factory.access

Class org.springframework.beans.factory.access.BootstrapException extends FatalBeanException implements Serializable


Package org.springframework.beans.factory.support

Class org.springframework.beans.factory.support.BeanDefinitionValidationException extends FatalBeanException implements Serializable

Class org.springframework.beans.factory.support.ManagedList extends java.util.ArrayList implements Serializable

Class org.springframework.beans.factory.support.ManagedSet extends java.util.HashSet implements Serializable


Package org.springframework.beans.support

Class org.springframework.beans.support.MutableSortDefinition extends java.lang.Object implements Serializable

Serialized Fields

property

java.lang.String property

ignoreCase

boolean ignoreCase

ascending

boolean ascending

toggleAscendingOnProperty

boolean toggleAscendingOnProperty

Class org.springframework.beans.support.PagedListHolder extends java.lang.Object implements Serializable

Serialized Fields

source

java.util.List source

refreshDate

java.util.Date refreshDate

sort

SortDefinition sort

sortUsed

SortDefinition sortUsed

pageSize

int pageSize

page

int page

newPageSet

boolean newPageSet

maxLinkedPages

int maxLinkedPages

Class org.springframework.beans.support.RefreshablePagedListHolder extends PagedListHolder implements Serializable

Serialized Fields

sourceProvider

PagedListSourceProvider sourceProvider

locale

java.util.Locale locale

localeUsed

java.util.Locale localeUsed

filter

java.lang.Object filter

filterUsed

java.lang.Object filterUsed


Package org.springframework.context

Class org.springframework.context.ApplicationContextException extends FatalBeanException implements Serializable

Class org.springframework.context.ApplicationEvent extends java.util.EventObject implements Serializable

Serialized Fields

timestamp

long timestamp
System time when the event happened

Class org.springframework.context.NoSuchMessageException extends java.lang.RuntimeException implements Serializable


Package org.springframework.context.event

Class org.springframework.context.event.ContextClosedEvent extends ApplicationEvent implements Serializable

Class org.springframework.context.event.ContextRefreshedEvent extends ApplicationEvent implements Serializable


Package org.springframework.context.support

Class org.springframework.context.support.DefaultMessageSourceResolvable extends java.lang.Object implements Serializable

Serialized Fields

codes

java.lang.String[] codes

arguments

java.lang.Object[] arguments

defaultMessage

java.lang.String defaultMessage


Package org.springframework.core

Class org.springframework.core.ConstantException extends java.lang.IllegalArgumentException implements Serializable

Class org.springframework.core.NestedCheckedException extends java.lang.Exception implements Serializable

Serialized Fields

cause

java.lang.Throwable cause
Root cause of this nested exception

Class org.springframework.core.NestedRuntimeException extends java.lang.RuntimeException implements Serializable

Serialized Fields

cause

java.lang.Throwable cause
Root cause of this nested exception


Package org.springframework.dao

Class org.springframework.dao.CannotAcquireLockException extends ConcurrencyFailureException implements Serializable

Class org.springframework.dao.CannotSerializeTransactionException extends ConcurrencyFailureException implements Serializable

Class org.springframework.dao.CleanupFailureDataAccessException extends DataAccessException implements Serializable

Class org.springframework.dao.ConcurrencyFailureException extends DataAccessException implements Serializable

Class org.springframework.dao.DataAccessException extends NestedRuntimeException implements Serializable

Class org.springframework.dao.DataAccessResourceFailureException extends DataAccessException implements Serializable

Class org.springframework.dao.DataIntegrityViolationException extends DataAccessException implements Serializable

Class org.springframework.dao.DataRetrievalFailureException extends DataAccessException implements Serializable

Class org.springframework.dao.DeadlockLoserDataAccessException extends DataAccessException implements Serializable

Class org.springframework.dao.IncorrectResultSizeDataAccessException extends InvalidDataAccessApiUsageException implements Serializable

Serialized Fields

expectedSize

int expectedSize

actualSize

int actualSize

Class org.springframework.dao.IncorrectUpdateSemanticsDataAccessException extends InvalidDataAccessResourceUsageException implements Serializable

Class org.springframework.dao.InvalidDataAccessApiUsageException extends DataAccessException implements Serializable

Class org.springframework.dao.InvalidDataAccessResourceUsageException extends DataAccessException implements Serializable

Class org.springframework.dao.OptimisticLockingFailureException extends ConcurrencyFailureException implements Serializable

Class org.springframework.dao.TypeMismatchDataAccessException extends InvalidDataAccessResourceUsageException implements Serializable

Class org.springframework.dao.UncategorizedDataAccessException extends DataAccessException implements Serializable


Package org.springframework.ejb.support

Class org.springframework.ejb.support.AbstractJmsMessageDrivenBean extends AbstractMessageDrivenBean implements Serializable

Class org.springframework.ejb.support.AbstractMessageDrivenBean extends AbstractEnterpriseBean implements Serializable

Serialized Fields

logger

org.apache.commons.logging.Log logger

messageDrivenContext

javax.ejb.MessageDrivenContext messageDrivenContext

Class org.springframework.ejb.support.AbstractStatefulSessionBean extends AbstractSessionBean implements Serializable

Class org.springframework.ejb.support.AbstractStatelessSessionBean extends AbstractSessionBean implements Serializable

Serialized Fields

logger

org.apache.commons.logging.Log logger


Package org.springframework.jdbc

Class org.springframework.jdbc.BadSqlGrammarException extends InvalidDataAccessResourceUsageException implements Serializable

Serialized Fields

ex

java.sql.SQLException ex
Root cause: underlying JDBC exception.


sql

java.lang.String sql
The offending SQL.

Class org.springframework.jdbc.CannotGetJdbcConnectionException extends DataAccessResourceFailureException implements Serializable

Class org.springframework.jdbc.JdbcUpdateAffectedIncorrectNumberOfRowsException extends IncorrectUpdateSemanticsDataAccessException implements Serializable

Serialized Fields

expected

int expected
Number of rows that should have been affected


actual

int actual
Number of rows that actually were affected

Class org.springframework.jdbc.LobRetrievalFailureException extends DataRetrievalFailureException implements Serializable

Class org.springframework.jdbc.SQLWarningException extends UncategorizedDataAccessException implements Serializable

Class org.springframework.jdbc.UncategorizedSQLException extends UncategorizedDataAccessException implements Serializable

Serialized Fields

sql

java.lang.String sql
SQL that led to the problem


Package org.springframework.jdbc.datasource

Class org.springframework.jdbc.datasource.DataSourceTransactionManager extends AbstractPlatformTransactionManager implements Serializable

Serialized Fields

dataSource

javax.sql.DataSource dataSource


Package org.springframework.jdbc.support

Class org.springframework.jdbc.support.MetaDataAccessException extends NestedCheckedException implements Serializable


Package org.springframework.jms

Class org.springframework.jms.IllegalStateException extends JmsException implements Serializable

Class org.springframework.jms.InvalidClientIDException extends JmsException implements Serializable

Class org.springframework.jms.InvalidDestinationException extends JmsException implements Serializable

Class org.springframework.jms.InvalidSelectorException extends JmsException implements Serializable

Class org.springframework.jms.JmsException extends NestedRuntimeException implements Serializable

Class org.springframework.jms.JmsSecurityException extends JmsException implements Serializable

Class org.springframework.jms.MessageEOFException extends JmsException implements Serializable

Class org.springframework.jms.MessageFormatException extends JmsException implements Serializable

Class org.springframework.jms.MessageNotReadableException extends JmsException implements Serializable

Class org.springframework.jms.MessageNotWriteableException extends JmsException implements Serializable

Class org.springframework.jms.ResourceAllocationException extends JmsException implements Serializable

Class org.springframework.jms.TransactionInProgressException extends JmsException implements Serializable

Class org.springframework.jms.TransactionRolledBackException extends JmsException implements Serializable

Class org.springframework.jms.UncategorizedJmsException extends JmsException implements Serializable


Package org.springframework.jms.connection

Class org.springframework.jms.connection.JmsTransactionManager extends AbstractPlatformTransactionManager implements Serializable

Serialized Fields

connectionFactory

javax.jms.ConnectionFactory connectionFactory

Class org.springframework.jms.connection.JmsTransactionManager102 extends JmsTransactionManager implements Serializable

Serialized Fields

pubSubDomain

boolean pubSubDomain


Package org.springframework.jms.support.converter

Class org.springframework.jms.support.converter.MessageConversionException extends JmsException implements Serializable


Package org.springframework.jms.support.destination

Class org.springframework.jms.support.destination.DestinationResolutionException extends JmsException implements Serializable


Package org.springframework.mail

Class org.springframework.mail.MailAuthenticationException extends MailException implements Serializable

Class org.springframework.mail.MailException extends NestedRuntimeException implements Serializable

Class org.springframework.mail.MailParseException extends MailException implements Serializable

Class org.springframework.mail.MailPreparationException extends MailException implements Serializable

Class org.springframework.mail.MailSendException extends MailException implements Serializable

Serialized Fields

failedMessages

java.util.Map failedMessages

Class org.springframework.mail.SimpleMailMessage extends java.lang.Object implements Serializable

Serialized Fields

from

java.lang.String from

replyTo

java.lang.String replyTo

to

java.lang.String[] to

cc

java.lang.String[] cc

bcc

java.lang.String[] bcc

sentDate

java.util.Date sentDate

subject

java.lang.String subject

text

java.lang.String text


Package org.springframework.orm

Class org.springframework.orm.ObjectOptimisticLockingFailureException extends OptimisticLockingFailureException implements Serializable

Serialized Fields

persistentClass

java.lang.Object persistentClass

identifier

java.lang.Object identifier

Class org.springframework.orm.ObjectRetrievalFailureException extends DataRetrievalFailureException implements Serializable

Serialized Fields

persistentClass

java.lang.Object persistentClass

identifier

java.lang.Object identifier


Package org.springframework.orm.hibernate

Class org.springframework.orm.hibernate.HibernateJdbcException extends UncategorizedDataAccessException implements Serializable

Class org.springframework.orm.hibernate.HibernateObjectRetrievalFailureException extends ObjectRetrievalFailureException implements Serializable

Class org.springframework.orm.hibernate.HibernateOptimisticLockingFailureException extends ObjectOptimisticLockingFailureException implements Serializable

Class org.springframework.orm.hibernate.HibernateQueryException extends InvalidDataAccessResourceUsageException implements Serializable

Class org.springframework.orm.hibernate.HibernateSystemException extends UncategorizedDataAccessException implements Serializable

Class org.springframework.orm.hibernate.HibernateTransactionManager extends AbstractPlatformTransactionManager implements Serializable

Serialized Fields

sessionFactory

net.sf.hibernate.SessionFactory sessionFactory

dataSource

javax.sql.DataSource dataSource

autodetectDataSource

boolean autodetectDataSource

entityInterceptor

java.lang.Object entityInterceptor

jdbcExceptionTranslator

SQLExceptionTranslator jdbcExceptionTranslator

beanFactory

BeanFactory beanFactory
Just needed for entityInterceptorBeanName.

See Also:
HibernateTransactionManager.setEntityInterceptorBeanName(java.lang.String)


Package org.springframework.orm.jdo

Class org.springframework.orm.jdo.JdoObjectRetrievalFailureException extends ObjectRetrievalFailureException implements Serializable

Class org.springframework.orm.jdo.JdoOptimisticLockingFailureException extends ObjectOptimisticLockingFailureException implements Serializable

Class org.springframework.orm.jdo.JdoResourceFailureException extends DataAccessResourceFailureException implements Serializable

Class org.springframework.orm.jdo.JdoSystemException extends UncategorizedDataAccessException implements Serializable

Class org.springframework.orm.jdo.JdoTransactionManager extends AbstractPlatformTransactionManager implements Serializable

Serialized Fields

persistenceManagerFactory

javax.jdo.PersistenceManagerFactory persistenceManagerFactory

dataSource

javax.sql.DataSource dataSource

autodetectDataSource

boolean autodetectDataSource

jdoDialect

JdoDialect jdoDialect

Class org.springframework.orm.jdo.JdoUsageException extends InvalidDataAccessApiUsageException implements Serializable


Package org.springframework.orm.ojb

Class org.springframework.orm.ojb.OjbOperationException extends UncategorizedDataAccessException implements Serializable

Class org.springframework.orm.ojb.PersistenceBrokerTransactionManager extends AbstractPlatformTransactionManager implements Serializable

Serialized Fields

pbKey

org.apache.ojb.broker.PBKey pbKey

dataSource

javax.sql.DataSource dataSource


Package org.springframework.remoting

Class org.springframework.remoting.RemoteAccessException extends NestedRuntimeException implements Serializable

Class org.springframework.remoting.RemoteConnectFailureException extends RemoteAccessException implements Serializable

Class org.springframework.remoting.RemoteLookupFailureException extends RemoteAccessException implements Serializable


Package org.springframework.remoting.support

Class org.springframework.remoting.support.RemoteInvocation extends java.lang.Object implements Serializable

serialVersionUID: 6876024250231820554l

Serialized Fields

methodName

java.lang.String methodName

parameterTypes

java.lang.Class[] parameterTypes

arguments

java.lang.Object[] arguments

attributes

java.util.Map attributes

Class org.springframework.remoting.support.RemoteInvocationResult extends java.lang.Object implements Serializable

serialVersionUID: 2138555143707773549l

Serialized Fields

value

java.lang.Object value

exception

java.lang.Throwable exception


Package org.springframework.scheduling.quartz

Class org.springframework.scheduling.quartz.CronTriggerBean extends org.quartz.CronTrigger implements Serializable

Serialized Fields

jobDetail

org.quartz.JobDetail jobDetail

beanName

java.lang.String beanName

Class org.springframework.scheduling.quartz.JobDetailBean extends org.quartz.JobDetail implements Serializable

Serialized Fields

beanName

java.lang.String beanName

applicationContext

ApplicationContext applicationContext

applicationContextJobDataKey

java.lang.String applicationContextJobDataKey

Class org.springframework.scheduling.quartz.ResourceJobSchedulingDataProcessor.JobSchedulingDataInitializationException extends NestedRuntimeException implements Serializable

Class org.springframework.scheduling.quartz.SchedulerFactoryBean.DelayedSchedulerStartException extends NestedRuntimeException implements Serializable

Class org.springframework.scheduling.quartz.SimpleTriggerBean extends org.quartz.SimpleTrigger implements Serializable

Serialized Fields

jobDetail

org.quartz.JobDetail jobDetail

startDelay

long startDelay

beanName

java.lang.String beanName


Package org.springframework.transaction

Class org.springframework.transaction.CannotCreateTransactionException extends TransactionException implements Serializable

Class org.springframework.transaction.HeuristicCompletionException extends TransactionException implements Serializable

Serialized Fields

outcomeState

int outcomeState
The outcome state of the transaction: have some or all resources been committed?

Class org.springframework.transaction.IllegalTransactionStateException extends CannotCreateTransactionException implements Serializable

Class org.springframework.transaction.InvalidIsolationLevelException extends TransactionUsageException implements Serializable

Class org.springframework.transaction.InvalidTimeoutException extends TransactionUsageException implements Serializable

Serialized Fields

timeout

int timeout

Class org.springframework.transaction.NestedTransactionNotSupportedException extends CannotCreateTransactionException implements Serializable

Class org.springframework.transaction.NoTransactionException extends TransactionUsageException implements Serializable

Class org.springframework.transaction.TransactionException extends NestedRuntimeException implements Serializable

Class org.springframework.transaction.TransactionSuspensionNotSupportedException extends CannotCreateTransactionException implements Serializable

Class org.springframework.transaction.TransactionSystemException extends TransactionException implements Serializable

Class org.springframework.transaction.TransactionUsageException extends TransactionException implements Serializable

Class org.springframework.transaction.UnexpectedRollbackException extends TransactionException implements Serializable


Package org.springframework.transaction.interceptor

Class org.springframework.transaction.interceptor.DefaultTransactionAttribute extends DefaultTransactionDefinition implements Serializable

Class org.springframework.transaction.interceptor.MatchAlwaysTransactionAttributeSource extends java.lang.Object implements Serializable

Serialized Fields

transactionAttribute

TransactionAttribute transactionAttribute

Class org.springframework.transaction.interceptor.NameMatchTransactionAttributeSource extends java.lang.Object implements Serializable

Serialized Fields

nameMap

java.util.Map nameMap
Keys are methods: values are TransactionAttributes

Class org.springframework.transaction.interceptor.NoRollbackRuleAttribute extends RollbackRuleAttribute implements Serializable

Class org.springframework.transaction.interceptor.RollbackRuleAttribute extends java.lang.Object implements Serializable

Serialized Fields

exceptionName

java.lang.String exceptionName
Could hold exception, resolving classname but would always require FQN. This way does multiple string comparisons, but how often do we decide whether to roll back a transaction following an exception?

Class org.springframework.transaction.interceptor.RuleBasedTransactionAttribute extends DefaultTransactionAttribute implements Serializable

Serialized Fields

rollbackRules

java.util.List rollbackRules

Class org.springframework.transaction.interceptor.TransactionAspectSupport extends java.lang.Object implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream ois)
                 throws java.io.IOException
Serialized Fields

transactionManager

PlatformTransactionManager transactionManager
Delegate used to create, commit and rollback transactions


transactionAttributeSource

TransactionAttributeSource transactionAttributeSource
Helper used to find transaction attributes

Class org.springframework.transaction.interceptor.TransactionAttributeSourceAdvisor extends StaticMethodMatcherPointcutAdvisor implements Serializable

Serialized Fields

transactionAttributeSource

TransactionAttributeSource transactionAttributeSource

Class org.springframework.transaction.interceptor.TransactionInterceptor extends TransactionAspectSupport implements Serializable

Class org.springframework.transaction.interceptor.TransactionProxyFactoryBean extends ProxyConfig implements Serializable

Serialized Fields

transactionInterceptor

TransactionInterceptor transactionInterceptor

target

java.lang.Object target

proxyInterfaces

java.lang.Class[] proxyInterfaces

pointcut

Pointcut pointcut

preInterceptors

java.lang.Object[] preInterceptors

postInterceptors

java.lang.Object[] postInterceptors

advisorAdapterRegistry

AdvisorAdapterRegistry advisorAdapterRegistry
Default is global AdvisorAdapterRegistry


proxy

java.lang.Object proxy


Package org.springframework.transaction.jta

Class org.springframework.transaction.jta.JtaTransactionManager extends AbstractPlatformTransactionManager implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream ois)
                 throws java.io.IOException
Serialized Fields

userTransactionName

java.lang.String userTransactionName

transactionManagerName

java.lang.String transactionManagerName

autodetectTransactionManager

boolean autodetectTransactionManager

Class org.springframework.transaction.jta.WebLogicJtaTransactionManager extends JtaTransactionManager implements Serializable

Serialized Fields

forceResumeMethod

java.lang.reflect.Method forceResumeMethod


Package org.springframework.transaction.support

Class org.springframework.transaction.support.AbstractPlatformTransactionManager extends java.lang.Object implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream ois)
                 throws java.io.IOException
Serialized Fields

transactionSynchronization

int transactionSynchronization

nestedTransactionAllowed

boolean nestedTransactionAllowed

rollbackOnCommitFailure

boolean rollbackOnCommitFailure

Class org.springframework.transaction.support.DefaultTransactionDefinition extends java.lang.Object implements Serializable

Serialized Fields

propagationBehavior

int propagationBehavior

isolationLevel

int isolationLevel

timeout

int timeout

readOnly

boolean readOnly

Class org.springframework.transaction.support.TransactionTemplate extends DefaultTransactionDefinition implements Serializable

Serialized Fields

logger

org.apache.commons.logging.Log logger

transactionManager

PlatformTransactionManager transactionManager


Package org.springframework.validation

Class org.springframework.validation.BindException extends java.lang.Exception implements Serializable

Serialized Fields

errors

java.util.List errors

beanWrapper

BeanWrapper beanWrapper

objectName

java.lang.String objectName

messageCodesResolver

MessageCodesResolver messageCodesResolver

nestedPath

java.lang.String nestedPath

nestedPathStack

java.util.Stack nestedPathStack

Class org.springframework.validation.FieldError extends ObjectError implements Serializable

Serialized Fields

field

java.lang.String field

rejectedValue

java.lang.Object rejectedValue

bindingFailure

boolean bindingFailure

Class org.springframework.validation.ObjectError extends DefaultMessageSourceResolvable implements Serializable

Serialized Fields

objectName

java.lang.String objectName


Package org.springframework.web.bind

Class org.springframework.web.bind.ServletRequestBindingException extends javax.servlet.ServletException implements Serializable

Class org.springframework.web.bind.ServletRequestParameterPropertyValues extends MutablePropertyValues implements Serializable


Package org.springframework.web.context

Class org.springframework.web.context.ContextLoaderServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

contextLoader

ContextLoader contextLoader


Package org.springframework.web.context.support

Class org.springframework.web.context.support.RequestHandledEvent extends ApplicationEvent implements Serializable

Serialized Fields

requestUrl

java.lang.String requestUrl

processingTimeMillis

long processingTimeMillis
Request processing time


clientAddress

java.lang.String clientAddress
IP address that the request came from


method

java.lang.String method
Usually GET or POST


servletName

java.lang.String servletName

sessionId

java.lang.String sessionId

userName

java.lang.String userName
Usually the UserPrincipal


failureCause

java.lang.Throwable failureCause
Cause of failure, if any


Package org.springframework.web.multipart

Class org.springframework.web.multipart.MaxUploadSizeExceededException extends MultipartException implements Serializable

Serialized Fields

maxUploadSize

long maxUploadSize

Class org.springframework.web.multipart.MultipartException extends javax.servlet.ServletException implements Serializable


Package org.springframework.web.multipart.commons

Class org.springframework.web.multipart.commons.CommonsMultipartFile extends java.lang.Object implements Serializable

Serialized Fields

fileItem

org.apache.commons.fileupload.FileItem fileItem

size

long size


Package org.springframework.web.servlet

Class org.springframework.web.servlet.DispatcherServlet extends FrameworkServlet implements Serializable

Serialized Fields

detectAllHandlerMappings

boolean detectAllHandlerMappings
Detect all HandlerMappings or just expect "handlerMapping" bean?


detectAllHandlerExceptionResolvers

boolean detectAllHandlerExceptionResolvers
Detect all HandlerExceptionResolvers or just expect "handlerExceptionResolver" bean?


detectAllViewResolvers

boolean detectAllViewResolvers
Detect all ViewResolvers or just expect "viewResolver" bean?


multipartResolver

MultipartResolver multipartResolver
MultipartResolver used by this servlet


localeResolver

LocaleResolver localeResolver
LocaleResolver used by this servlet


themeResolver

ThemeResolver themeResolver
ThemeResolver used by this servlet


handlerMappings

java.util.List handlerMappings
List of HandlerMappings used by this servlet


handlerAdapters

java.util.List handlerAdapters
List of HandlerAdapters used by this servlet


handlerExceptionResolvers

java.util.List handlerExceptionResolvers
List of HandlerExceptionResolvers used by this servlet


viewResolvers

java.util.List viewResolvers
List of ViewResolvers used by this servlet

Class org.springframework.web.servlet.FrameworkServlet extends HttpServletBean implements Serializable

Serialized Fields

contextClass

java.lang.Class contextClass
Custom WebApplicationContext implementation class


namespace

java.lang.String namespace
Namespace for this servlet


contextConfigLocation

java.lang.String contextConfigLocation
Explicit context config location


publishContext

boolean publishContext
Should we publish the context as a ServletContext attribute?


webApplicationContext

WebApplicationContext webApplicationContext
WebApplicationContext for this servlet

Class org.springframework.web.servlet.HttpServletBean extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

logger

org.apache.commons.logging.Log logger

requiredProperties

java.util.Set requiredProperties
Set of required properties (Strings) that must be supplied as config parameters to this servlet.

Class org.springframework.web.servlet.ModelAndViewDefiningException extends javax.servlet.ServletException implements Serializable

Serialized Fields

modelAndView

ModelAndView modelAndView

Class org.springframework.web.servlet.ResourceServlet extends HttpServletBean implements Serializable

Serialized Fields

defaultUrl

java.lang.String defaultUrl

allowedResources

java.lang.String allowedResources

contentType

java.lang.String contentType

applyLastModified

boolean applyLastModified

startupTime

long startupTime


Package org.springframework.web.servlet.mvc.multiaction

Class org.springframework.web.servlet.mvc.multiaction.NoSuchRequestHandlingMethodException extends javax.servlet.ServletException implements Serializable


Package org.springframework.web.servlet.support

Class org.springframework.web.servlet.support.RequestMethodNotSupportedException extends javax.servlet.ServletException implements Serializable

Class org.springframework.web.servlet.support.SessionRequiredException extends javax.servlet.ServletException implements Serializable


Package org.springframework.web.servlet.tags

Class org.springframework.web.servlet.tags.BindErrorsTag extends HtmlEscapingAwareTag implements Serializable

Serialized Fields

name

java.lang.String name

errors

Errors errors

Class org.springframework.web.servlet.tags.BindTag extends HtmlEscapingAwareTag implements Serializable

Serialized Fields

path

java.lang.String path

ignoreNestedPath

boolean ignoreNestedPath

status

BindStatus status

Class org.springframework.web.servlet.tags.EscapeBodyTag extends HtmlEscapingAwareTag implements Serializable

Serialized Fields

javaScriptEscape

boolean javaScriptEscape

bodyContent

javax.servlet.jsp.tagext.BodyContent bodyContent

Class org.springframework.web.servlet.tags.HtmlEscapeTag extends RequestContextAwareTag implements Serializable

Serialized Fields

defaultHtmlEscape

java.lang.String defaultHtmlEscape

Class org.springframework.web.servlet.tags.HtmlEscapingAwareTag extends RequestContextAwareTag implements Serializable

Serialized Fields

htmlEscape

java.lang.Boolean htmlEscape

Class org.springframework.web.servlet.tags.MessageTag extends HtmlEscapingAwareTag implements Serializable

Serialized Fields

code

java.lang.String code

arguments

java.lang.Object arguments

text

java.lang.String text

var

java.lang.String var

scope

java.lang.String scope

javaScriptEscape

boolean javaScriptEscape

Class org.springframework.web.servlet.tags.NestedPathTag extends javax.servlet.jsp.tagext.TagSupport implements Serializable

Serialized Fields

path

java.lang.String path

previousNestedPath

java.lang.String previousNestedPath
To cache any previous nested path, so that it may be reset

Class org.springframework.web.servlet.tags.RequestContextAwareTag extends javax.servlet.jsp.tagext.TagSupport implements Serializable

Serialized Fields

logger

org.apache.commons.logging.Log logger

requestContext

RequestContext requestContext

Class org.springframework.web.servlet.tags.ThemeTag extends MessageTag implements Serializable

Class org.springframework.web.servlet.tags.TransformTag extends HtmlEscapingAwareTag implements Serializable

Serialized Fields

value

java.lang.String value
the value to transform using the appropriate property editor


var

java.lang.String var
the variable to put the result in


scope

java.lang.String scope
the scope of the variable the result will be put in


Package org.springframework.web.servlet.view.xslt

Class org.springframework.web.servlet.view.xslt.FormatHelper.XsltFormattingException extends NestedRuntimeException implements Serializable


Package org.springframework.web.util

Class org.springframework.web.util.Log4jConfigServlet extends javax.servlet.http.HttpServlet implements Serializable


Package org.springframework.mock.web

Class org.springframework.mock.web.MockHttpServletRequest extends java.lang.Object implements Serializable

Serialized Fields

attributes

java.util.Hashtable attributes

characterEncoding

java.lang.String characterEncoding

content

byte[] content

contentType

java.lang.String contentType

parameters

java.util.Hashtable parameters

protocol

java.lang.String protocol

scheme

java.lang.String scheme

serverName

java.lang.String serverName

serverPort

int serverPort

remoteAddr

java.lang.String remoteAddr

remoteHost

java.lang.String remoteHost

locales

java.util.Vector locales
List of locales in descending order


secure

boolean secure

servletContext

javax.servlet.ServletContext servletContext

authType

java.lang.String authType

cookies

javax.servlet.http.Cookie[] cookies

headers

java.util.Hashtable headers

method

java.lang.String method

pathInfo

java.lang.String pathInfo

contextPath

java.lang.String contextPath

queryString

java.lang.String queryString

remoteUser

java.lang.String remoteUser

roles

java.util.Set roles

userPrincipal

java.security.Principal userPrincipal

requestURI

java.lang.String requestURI

servletPath

java.lang.String servletPath

session

javax.servlet.http.HttpSession session

requestedSessionIdValid

boolean requestedSessionIdValid

requestedSessionIdFromCookie

boolean requestedSessionIdFromCookie

requestedSessionIdFromURL

boolean requestedSessionIdFromURL



Copyright (C) 2003-2004 The Spring Framework Project.