Serialized Form
Package org.springframework.aop.framework |
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.
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
advised
AdvisedSupport advised
- Config used to configure this proxy
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.
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 |
advice
AfterReturningAdvice advice
advice
MethodBeforeAdvice advice
Package org.springframework.aop.framework.autoproxy |
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
beanNames
java.util.List beanNames
usePrefix
boolean usePrefix
advisorBeanNamePrefix
java.lang.String advisorBeanNamePrefix
Package org.springframework.aop.interceptor |
concurrencyLimit
int concurrencyLimit
concurrencyCount
int concurrencyCount
count
int count
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().
Package org.springframework.aop.support |
readObject
private void readObject(java.io.ObjectInputStream ois)
throws java.io.IOException
patterns
java.lang.String[] patterns
- Regular expressions to match
classFilter
ClassFilter classFilter
methodMatcher
MethodMatcher methodMatcher
clazz
java.lang.Class clazz
methodName
java.lang.String methodName
evaluations
int evaluations
order
int order
advice
org.aopalliance.aop.Advice advice
interfaces
java.util.Set interfaces
order
int order
pointcut
Pointcut pointcut
advice
org.aopalliance.aop.Advice advice
delegate
java.lang.Object delegate
- Object that actually implements the interfaces.
May be "this" if a subclass implements the introduced interfaces.
order
int order
advice
org.aopalliance.aop.Advice advice
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.
publishedInterfaces
java.util.Set publishedInterfaces
- Set of Class
mappedNames
java.util.List mappedNames
order
int order
advice
org.aopalliance.aop.Advice advice
clazz
java.lang.Class clazz
order
int order
advice
org.aopalliance.aop.Advice advice
Package org.springframework.aop.target |
maxSize
int maxSize
- The size of the pool
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.
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
pool
org.apache.commons.pool.ObjectPool pool
- Jakarta Commons object pool
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().
target
java.lang.Object target
- Target cached and invoked using reflection
target
java.lang.Object target
- Target cached and invoked using reflection
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 |
beanClass
java.lang.Class beanClass
propertyName
java.lang.String propertyName
propertyValueList
java.util.List propertyValueList
- List of PropertyValue objects
propertyValueArray
PropertyValue[] propertyValueArray
- Cached PropertyValues for quicker access.
Updated on writes.
propertyChangeEvent
java.beans.PropertyChangeEvent propertyChangeEvent
beanWrapper
BeanWrapper beanWrapper
- BeanWrapper wrapping the target object for binding
propertyAccessExceptions
PropertyAccessException[] propertyAccessExceptions
- List of PropertyAccessException objects
name
java.lang.String name
- Property name
value
java.lang.Object value
- Value of the property
requiredType
java.lang.Class requiredType
Package org.springframework.beans.factory |
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
beanName
java.lang.String beanName
- Name of the missing bean
beanType
java.lang.Class beanType
- Required bean type
Package org.springframework.beans.factory.access |
Package org.springframework.beans.factory.support |
Package org.springframework.beans.support |
property
java.lang.String property
ignoreCase
boolean ignoreCase
ascending
boolean ascending
toggleAscendingOnProperty
boolean toggleAscendingOnProperty
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
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 |
timestamp
long timestamp
- System time when the event happened
Package org.springframework.context.event |
Package org.springframework.context.support |
codes
java.lang.String[] codes
arguments
java.lang.Object[] arguments
defaultMessage
java.lang.String defaultMessage
Package org.springframework.core |
cause
java.lang.Throwable cause
- Root cause of this nested exception
cause
java.lang.Throwable cause
- Root cause of this nested exception
Package org.springframework.dao |
expectedSize
int expectedSize
actualSize
int actualSize
Package org.springframework.ejb.support |
logger
org.apache.commons.logging.Log logger
messageDrivenContext
javax.ejb.MessageDrivenContext messageDrivenContext
logger
org.apache.commons.logging.Log logger
Package org.springframework.jdbc |
ex
java.sql.SQLException ex
- Root cause: underlying JDBC exception.
sql
java.lang.String sql
- The offending SQL.
expected
int expected
- Number of rows that should have been affected
actual
int actual
- Number of rows that actually were affected
sql
java.lang.String sql
- SQL that led to the problem
Package org.springframework.jdbc.datasource |
dataSource
javax.sql.DataSource dataSource
Package org.springframework.jdbc.support |
Package org.springframework.jms |
Package org.springframework.jms.connection |
connectionFactory
javax.jms.ConnectionFactory connectionFactory
pubSubDomain
boolean pubSubDomain
Package org.springframework.jms.support.converter |
Package org.springframework.jms.support.destination |
Package org.springframework.mail |
failedMessages
java.util.Map failedMessages
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 |
persistentClass
java.lang.Object persistentClass
identifier
java.lang.Object identifier
persistentClass
java.lang.Object persistentClass
identifier
java.lang.Object identifier
Package org.springframework.orm.hibernate |
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 |
persistenceManagerFactory
javax.jdo.PersistenceManagerFactory persistenceManagerFactory
dataSource
javax.sql.DataSource dataSource
autodetectDataSource
boolean autodetectDataSource
jdoDialect
JdoDialect jdoDialect
Package org.springframework.orm.ojb |
pbKey
org.apache.ojb.broker.PBKey pbKey
dataSource
javax.sql.DataSource dataSource
Package org.springframework.remoting |
Package org.springframework.remoting.support |
serialVersionUID: 6876024250231820554l
methodName
java.lang.String methodName
parameterTypes
java.lang.Class[] parameterTypes
arguments
java.lang.Object[] arguments
attributes
java.util.Map attributes
serialVersionUID: 2138555143707773549l
value
java.lang.Object value
exception
java.lang.Throwable exception
Package org.springframework.scheduling.quartz |
jobDetail
org.quartz.JobDetail jobDetail
beanName
java.lang.String beanName
beanName
java.lang.String beanName
applicationContext
ApplicationContext applicationContext
applicationContextJobDataKey
java.lang.String applicationContextJobDataKey
jobDetail
org.quartz.JobDetail jobDetail
startDelay
long startDelay
beanName
java.lang.String beanName
Package org.springframework.transaction |
outcomeState
int outcomeState
- The outcome state of the transaction: have some or all resources been committed?
timeout
int timeout
Package org.springframework.transaction.interceptor |
transactionAttribute
TransactionAttribute transactionAttribute
nameMap
java.util.Map nameMap
- Keys are methods: values are TransactionAttributes
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?
rollbackRules
java.util.List rollbackRules
readObject
private void readObject(java.io.ObjectInputStream ois)
throws java.io.IOException
transactionManager
PlatformTransactionManager transactionManager
- Delegate used to create, commit and rollback transactions
transactionAttributeSource
TransactionAttributeSource transactionAttributeSource
- Helper used to find transaction attributes
transactionAttributeSource
TransactionAttributeSource transactionAttributeSource
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 |
readObject
private void readObject(java.io.ObjectInputStream ois)
throws java.io.IOException
userTransactionName
java.lang.String userTransactionName
transactionManagerName
java.lang.String transactionManagerName
autodetectTransactionManager
boolean autodetectTransactionManager
forceResumeMethod
java.lang.reflect.Method forceResumeMethod
Package org.springframework.transaction.support |
readObject
private void readObject(java.io.ObjectInputStream ois)
throws java.io.IOException
transactionSynchronization
int transactionSynchronization
nestedTransactionAllowed
boolean nestedTransactionAllowed
rollbackOnCommitFailure
boolean rollbackOnCommitFailure
propagationBehavior
int propagationBehavior
isolationLevel
int isolationLevel
timeout
int timeout
readOnly
boolean readOnly
logger
org.apache.commons.logging.Log logger
transactionManager
PlatformTransactionManager transactionManager
Package org.springframework.validation |
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
field
java.lang.String field
rejectedValue
java.lang.Object rejectedValue
bindingFailure
boolean bindingFailure
objectName
java.lang.String objectName
Package org.springframework.web.bind |
Package org.springframework.web.context |
contextLoader
ContextLoader contextLoader
Package org.springframework.web.context.support |
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 |
maxUploadSize
long maxUploadSize
Package org.springframework.web.multipart.commons |
fileItem
org.apache.commons.fileupload.FileItem fileItem
size
long size
Package org.springframework.web.servlet |
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
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
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.
modelAndView
ModelAndView modelAndView
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 |
Package org.springframework.web.servlet.support |
Package org.springframework.web.servlet.tags |
name
java.lang.String name
errors
Errors errors
path
java.lang.String path
ignoreNestedPath
boolean ignoreNestedPath
status
BindStatus status
javaScriptEscape
boolean javaScriptEscape
bodyContent
javax.servlet.jsp.tagext.BodyContent bodyContent
defaultHtmlEscape
java.lang.String defaultHtmlEscape
htmlEscape
java.lang.Boolean htmlEscape
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
path
java.lang.String path
previousNestedPath
java.lang.String previousNestedPath
- To cache any previous nested path, so that it may be reset
logger
org.apache.commons.logging.Log logger
requestContext
RequestContext requestContext
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 |
Package org.springframework.web.util |
Package org.springframework.mock.web |
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.