Java Doc for AbstractBeanDefinition.java in  » J2EE » spring-framework-2.0.6 » org » springframework » beans » factory » support » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » spring framework 2.0.6 » org.springframework.beans.factory.support 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.springframework.core.AttributeAccessorSupport
      org.springframework.beans.factory.support.AbstractBeanDefinition

All known Subclasses:   org.springframework.beans.factory.support.RootBeanDefinition,  org.springframework.beans.factory.support.ChildBeanDefinition,
AbstractBeanDefinition
abstract public class AbstractBeanDefinition extends AttributeAccessorSupport implements BeanDefinition(Code)
Base class for concrete, full-fledged org.springframework.beans.factory.config.BeanDefinition classes, factoring out common properties of RootBeanDefinition and ChildBeanDefinition .

The autowire constants match the ones defined in the org.springframework.beans.factory.config.AutowireCapableBeanFactory interface.
author:
   Rod Johnson
author:
   Juergen Hoeller
author:
   Rob Harrop
See Also:   RootBeanDefinition
See Also:   ChildBeanDefinition



Field Summary
final public static  intAUTOWIRE_AUTODETECT
     Constant that indicates determining an appropriate autowire strategy through introspection of the bean class.
final public static  intAUTOWIRE_BY_NAME
     Constant that indicates autowiring bean properties by name.
final public static  intAUTOWIRE_BY_TYPE
     Constant that indicates autowiring bean properties by type.
final public static  intAUTOWIRE_CONSTRUCTOR
     Constant that indicates autowiring a constructor.
final public static  intAUTOWIRE_NO
     Constant that indicates no autowiring at all.
final public static  intDEPENDENCY_CHECK_ALL
     Constant that indicates dependency checking for all properties (object references as well as "simple" properties).
final public static  intDEPENDENCY_CHECK_NONE
     Constant that indicates no dependency check at all.
final public static  intDEPENDENCY_CHECK_OBJECTS
     Constant that indicates dependency checking for object references.
final public static  intDEPENDENCY_CHECK_SIMPLE
     Constant that indicates dependency checking for "simple" properties.

Constructor Summary
protected  AbstractBeanDefinition()
     Create a new AbstractBeanDefinition with default settings.
protected  AbstractBeanDefinition(ConstructorArgumentValues cargs, MutablePropertyValues pvs)
     Create a new AbstractBeanDefinition with the given constructor argument values and property values.
protected  AbstractBeanDefinition(AbstractBeanDefinition original)
     Create a new AbstractBeanDefinition as deep copy of the given bean definition.

Method Summary
public  booleanequals(Object other)
    
public  intgetAutowireMode()
     Return the autowire mode as specified in the bean definition.
public  ClassgetBeanClass()
     Return the class of the wrapped bean.
public  StringgetBeanClassName()
     Return the class name of the wrapped bean.
public  ConstructorArgumentValuesgetConstructorArgumentValues()
     Return constructor argument values for this bean (never null).
public  intgetDependencyCheck()
     Return the dependency check code.
public  String[]getDependsOn()
     Return the bean names that this bean depends on.
public  StringgetDestroyMethodName()
     Return the name of the destroy method.
public  StringgetFactoryBeanName()
     Returns the factory bean name, if any.
public  StringgetFactoryMethodName()
     Return a factory method, if any.
public  StringgetInitMethodName()
     Return the name of the initializer method.
public  MethodOverridesgetMethodOverrides()
     Return information about methods to be overridden by the IoC container.
public  MutablePropertyValuesgetPropertyValues()
     Return property values for this bean (never null).
public  intgetResolvedAutowireMode()
     Return the resolved autowire code, (resolving AUTOWIRE_AUTODETECT to AUTOWIRE_CONSTRUCTOR or AUTOWIRE_BY_TYPE).
public  StringgetResourceDescription()
     Return a description of the resource that this bean definition came from.
public  intgetRole()
     Return the role hint for this BeanDefinition.
public  StringgetScope()
     Return the name of the target scope for the bean.
public  ObjectgetSource()
    
public  booleanhasBeanClass()
     Return whether this definition specifies a bean class.
public  booleanhasConstructorArgumentValues()
     Return if there are constructor argument values defined for this bean.
public  inthashCode()
    
public  booleanisAbstract()
     Return whether this bean is "abstract", i.e.
public  booleanisAutowireCandidate()
     Return whether this bean is a candidate for getting autowired into some other bean.
public  booleanisEnforceDestroyMethod()
     Indicate whether the configured destroy method is the default.
public  booleanisEnforceInitMethod()
     Indicate whether the configured init method is the default.
public  booleanisLazyInit()
     Return whether this bean should be lazily initialized, i.e.
public  booleanisPrototype()
     Return whether this a Prototype, with an independent instance returned for each call.
public  booleanisSingleton()
     Return whether this a Singleton, with a single shared instance returned from all calls.
public  booleanisSynthetic()
     Return whether this bean definition is 'synthetic', that is, not defined by the application itself.
public  voidoverrideFrom(AbstractBeanDefinition other)
     Override settings in this bean definition (assumably a copied parent from a parent-child inheritance relationship) from the given bean definition (assumably the child).
protected  voidprepareMethodOverride(MethodOverride mo)
     Validate and prepare the given method override.
public  voidprepareMethodOverrides()
     Validate and prepare the method overrides defined for this bean.
public  ClassresolveBeanClass(ClassLoader classLoader)
     Determine the class of the wrapped bean, resolving it from a specified class name if necessary.
public  voidsetAbstract(boolean abstractFlag)
     Set if this bean is "abstract", i.e.
public  voidsetAutowireCandidate(boolean autowireCandidate)
     Set whether this bean is a candidate for getting autowired into some other bean.
public  voidsetAutowireMode(int autowireMode)
     Set the autowire mode.
public  voidsetBeanClass(Class beanClass)
     Specify the class for this bean.
public  voidsetBeanClassName(String beanClassName)
     Specify the class name for this bean.
public  voidsetConstructorArgumentValues(ConstructorArgumentValues constructorArgumentValues)
     Specify constructor argument values for this bean.
public  voidsetDependencyCheck(int dependencyCheck)
     Set the dependency check code.
public  voidsetDependsOn(String[] dependsOn)
     Set the names of the beans that this bean depends on being initialized. The bean factory will guarantee that these beans get initialized before.

Note that dependencies are normally expressed through bean properties or constructor arguments.

public  voidsetDestroyMethodName(String destroyMethodName)
     Set the name of the destroy method.
public  voidsetEnforceDestroyMethod(boolean enforceDestroyMethod)
     Specify whether or not the configured destroy method is the default.
public  voidsetEnforceInitMethod(boolean enforceInitMethod)
     Specify whether or not the configured init method is the default.
public  voidsetFactoryBeanName(String factoryBeanName)
     Specify the factory bean to use, if any.
public  voidsetFactoryMethodName(String factoryMethodName)
     Specify a factory method, if any.
public  voidsetInitMethodName(String initMethodName)
     Set the name of the initializer method.
public  voidsetLazyInit(boolean lazyInit)
     Set whether this bean should be lazily initialized.
public  voidsetMethodOverrides(MethodOverrides methodOverrides)
     Specify method overrides for the bean, if any.
public  voidsetPropertyValues(MutablePropertyValues propertyValues)
     Specify property values for this bean, if any.
public  voidsetResourceDescription(String resourceDescription)
     Set a description of the resource that this bean definition came from (for the purpose of showing context in case of errors).
public  voidsetRole(int role)
     Set the role hint for this BeanDefinition.
public  voidsetScope(String scope)
     Set the name of the target scope for the bean.
public  voidsetSingleton(boolean singleton)
     Set if this a Singleton, with a single, shared instance returned on all calls.
public  voidsetSource(Object source)
     Set the configuration source Object for this metadata element.
public  voidsetSynthetic(boolean synthetic)
     Set whether this bean definition is 'synthetic', that is, not defined by the application itself (for example, an infrastructure bean such as a helper for auto-proxying, created through <aop:config>).
public  StringtoString()
    
public  voidvalidate()
     Validate this bean definition.

Field Detail
AUTOWIRE_AUTODETECT
final public static int AUTOWIRE_AUTODETECT(Code)
Constant that indicates determining an appropriate autowire strategy through introspection of the bean class.
See Also:   AbstractBeanDefinition.setAutowireMode



AUTOWIRE_BY_NAME
final public static int AUTOWIRE_BY_NAME(Code)
Constant that indicates autowiring bean properties by name.
See Also:   AbstractBeanDefinition.setAutowireMode



AUTOWIRE_BY_TYPE
final public static int AUTOWIRE_BY_TYPE(Code)
Constant that indicates autowiring bean properties by type.
See Also:   AbstractBeanDefinition.setAutowireMode



AUTOWIRE_CONSTRUCTOR
final public static int AUTOWIRE_CONSTRUCTOR(Code)
Constant that indicates autowiring a constructor.
See Also:   AbstractBeanDefinition.setAutowireMode



AUTOWIRE_NO
final public static int AUTOWIRE_NO(Code)
Constant that indicates no autowiring at all.
See Also:   AbstractBeanDefinition.setAutowireMode



DEPENDENCY_CHECK_ALL
final public static int DEPENDENCY_CHECK_ALL(Code)
Constant that indicates dependency checking for all properties (object references as well as "simple" properties).
See Also:   AbstractBeanDefinition.setDependencyCheck



DEPENDENCY_CHECK_NONE
final public static int DEPENDENCY_CHECK_NONE(Code)
Constant that indicates no dependency check at all.
See Also:   AbstractBeanDefinition.setDependencyCheck



DEPENDENCY_CHECK_OBJECTS
final public static int DEPENDENCY_CHECK_OBJECTS(Code)
Constant that indicates dependency checking for object references.
See Also:   AbstractBeanDefinition.setDependencyCheck



DEPENDENCY_CHECK_SIMPLE
final public static int DEPENDENCY_CHECK_SIMPLE(Code)
Constant that indicates dependency checking for "simple" properties.
See Also:   AbstractBeanDefinition.setDependencyCheck
See Also:   org.springframework.beans.BeanUtils.isSimpleProperty




Constructor Detail
AbstractBeanDefinition
protected AbstractBeanDefinition()(Code)
Create a new AbstractBeanDefinition with default settings.



AbstractBeanDefinition
protected AbstractBeanDefinition(ConstructorArgumentValues cargs, MutablePropertyValues pvs)(Code)
Create a new AbstractBeanDefinition with the given constructor argument values and property values.



AbstractBeanDefinition
protected AbstractBeanDefinition(AbstractBeanDefinition original)(Code)
Create a new AbstractBeanDefinition as deep copy of the given bean definition.
Parameters:
  original - the original bean definition to copy from




Method Detail
equals
public boolean equals(Object other)(Code)



getAutowireMode
public int getAutowireMode()(Code)
Return the autowire mode as specified in the bean definition.



getBeanClass
public Class getBeanClass() throws IllegalStateException(Code)
Return the class of the wrapped bean.
throws:
  IllegalStateException - if the bean definition does not define a bean class,or a specified bean class name has not been resolved into an actual Class



getBeanClassName
public String getBeanClassName()(Code)
Return the class name of the wrapped bean.



getConstructorArgumentValues
public ConstructorArgumentValues getConstructorArgumentValues()(Code)
Return constructor argument values for this bean (never null).



getDependencyCheck
public int getDependencyCheck()(Code)
Return the dependency check code.



getDependsOn
public String[] getDependsOn()(Code)
Return the bean names that this bean depends on.



getDestroyMethodName
public String getDestroyMethodName()(Code)
Return the name of the destroy method.



getFactoryBeanName
public String getFactoryBeanName()(Code)
Returns the factory bean name, if any.



getFactoryMethodName
public String getFactoryMethodName()(Code)
Return a factory method, if any.



getInitMethodName
public String getInitMethodName()(Code)
Return the name of the initializer method.



getMethodOverrides
public MethodOverrides getMethodOverrides()(Code)
Return information about methods to be overridden by the IoC container. This will be empty if there are no method overrides. Never returns null.



getPropertyValues
public MutablePropertyValues getPropertyValues()(Code)
Return property values for this bean (never null).



getResolvedAutowireMode
public int getResolvedAutowireMode()(Code)
Return the resolved autowire code, (resolving AUTOWIRE_AUTODETECT to AUTOWIRE_CONSTRUCTOR or AUTOWIRE_BY_TYPE).
See Also:   AbstractBeanDefinition.AUTOWIRE_AUTODETECT
See Also:   AbstractBeanDefinition.AUTOWIRE_CONSTRUCTOR
See Also:   AbstractBeanDefinition.AUTOWIRE_BY_TYPE



getResourceDescription
public String getResourceDescription()(Code)
Return a description of the resource that this bean definition came from.



getRole
public int getRole()(Code)
Return the role hint for this BeanDefinition.



getScope
public String getScope()(Code)
Return the name of the target scope for the bean.



getSource
public Object getSource()(Code)



hasBeanClass
public boolean hasBeanClass()(Code)
Return whether this definition specifies a bean class.



hasConstructorArgumentValues
public boolean hasConstructorArgumentValues()(Code)
Return if there are constructor argument values defined for this bean.



hashCode
public int hashCode()(Code)



isAbstract
public boolean isAbstract()(Code)
Return whether this bean is "abstract", i.e. not meant to be instantiated itself but rather just serving as parent for concrete child bean definitions.



isAutowireCandidate
public boolean isAutowireCandidate()(Code)
Return whether this bean is a candidate for getting autowired into some other bean.



isEnforceDestroyMethod
public boolean isEnforceDestroyMethod()(Code)
Indicate whether the configured destroy method is the default.
See Also:   AbstractBeanDefinition.getDestroyMethodName



isEnforceInitMethod
public boolean isEnforceInitMethod()(Code)
Indicate whether the configured init method is the default.
See Also:   AbstractBeanDefinition.getInitMethodName()



isLazyInit
public boolean isLazyInit()(Code)
Return whether this bean should be lazily initialized, i.e. not eagerly instantiated on startup. Only applicable to a singleton bean.



isPrototype
public boolean isPrototype()(Code)
Return whether this a Prototype, with an independent instance returned for each call.
See Also:   AbstractBeanDefinition.SCOPE_PROTOTYPE



isSingleton
public boolean isSingleton()(Code)
Return whether this a Singleton, with a single shared instance returned from all calls.
See Also:   AbstractBeanDefinition.SCOPE_SINGLETON



isSynthetic
public boolean isSynthetic()(Code)
Return whether this bean definition is 'synthetic', that is, not defined by the application itself.



overrideFrom
public void overrideFrom(AbstractBeanDefinition other)(Code)
Override settings in this bean definition (assumably a copied parent from a parent-child inheritance relationship) from the given bean definition (assumably the child).
  • Will override beanClass if specified in the given bean definition.
  • Will always take abstract, scope, lazyInit, autowireMode, dependencyCheck, and dependsOn from the given bean definition.
  • Will add constructorArgumentValues, propertyValues, methodOverrides from the given bean definition to existing ones.
  • Will override factoryBeanName, factoryMethodName, initMethodName, and destroyMethodName if specified in the given bean definition.



prepareMethodOverride
protected void prepareMethodOverride(MethodOverride mo) throws BeanDefinitionValidationException(Code)
Validate and prepare the given method override. Checks for existence of a method with the specified name, marking it as not overloaded if none found.
Parameters:
  mo - the MethodOverride object to validate
throws:
  BeanDefinitionValidationException - in case of validation failure



prepareMethodOverrides
public void prepareMethodOverrides() throws BeanDefinitionValidationException(Code)
Validate and prepare the method overrides defined for this bean. Checks for existence of a method with the specified name.
throws:
  BeanDefinitionValidationException - in case of validation failure



resolveBeanClass
public Class resolveBeanClass(ClassLoader classLoader) throws ClassNotFoundException(Code)
Determine the class of the wrapped bean, resolving it from a specified class name if necessary. Will also reload a specified Class from its name when called with the bean class already resolved.
Parameters:
  classLoader - the ClassLoader to use for resolving a (potential) class name the resolved bean class
throws:
  ClassNotFoundException - if the class name could be resolved



setAbstract
public void setAbstract(boolean abstractFlag)(Code)
Set if this bean is "abstract", i.e. not meant to be instantiated itself but rather just serving as parent for concrete child bean definitions.

Default is "false". Specify true to tell the bean factory to not try to instantiate that particular bean in any case.




setAutowireCandidate
public void setAutowireCandidate(boolean autowireCandidate)(Code)
Set whether this bean is a candidate for getting autowired into some other bean.



setAutowireMode
public void setAutowireMode(int autowireMode)(Code)
Set the autowire mode. This determines whether any automagical detection and setting of bean references will happen. Default is AUTOWIRE_NO, which means there's no autowire.
Parameters:
  autowireMode - the autowire mode to set.Must be one of the constants defined in this class.
See Also:   AbstractBeanDefinition.AUTOWIRE_NO
See Also:   AbstractBeanDefinition.AUTOWIRE_BY_NAME
See Also:   AbstractBeanDefinition.AUTOWIRE_BY_TYPE
See Also:   AbstractBeanDefinition.AUTOWIRE_CONSTRUCTOR
See Also:   AbstractBeanDefinition.AUTOWIRE_AUTODETECT



setBeanClass
public void setBeanClass(Class beanClass)(Code)
Specify the class for this bean.



setBeanClassName
public void setBeanClassName(String beanClassName)(Code)
Specify the class name for this bean.



setConstructorArgumentValues
public void setConstructorArgumentValues(ConstructorArgumentValues constructorArgumentValues)(Code)
Specify constructor argument values for this bean.



setDependencyCheck
public void setDependencyCheck(int dependencyCheck)(Code)
Set the dependency check code.
Parameters:
  dependencyCheck - the code to set.Must be one of the four constants defined in this class.
See Also:   AbstractBeanDefinition.DEPENDENCY_CHECK_NONE
See Also:   AbstractBeanDefinition.DEPENDENCY_CHECK_OBJECTS
See Also:   AbstractBeanDefinition.DEPENDENCY_CHECK_SIMPLE
See Also:   AbstractBeanDefinition.DEPENDENCY_CHECK_ALL



setDependsOn
public void setDependsOn(String[] dependsOn)(Code)
Set the names of the beans that this bean depends on being initialized. The bean factory will guarantee that these beans get initialized before.

Note that dependencies are normally expressed through bean properties or constructor arguments. This property should just be necessary for other kinds of dependencies like statics (*ugh*) or database preparation on startup.




setDestroyMethodName
public void setDestroyMethodName(String destroyMethodName)(Code)
Set the name of the destroy method. The default is null in which case there is no destroy method.



setEnforceDestroyMethod
public void setEnforceDestroyMethod(boolean enforceDestroyMethod)(Code)
Specify whether or not the configured destroy method is the default. Default value is false.
See Also:   AbstractBeanDefinition.setDestroyMethodName



setEnforceInitMethod
public void setEnforceInitMethod(boolean enforceInitMethod)(Code)
Specify whether or not the configured init method is the default. Default value is false.
See Also:   AbstractBeanDefinition.setInitMethodName



setFactoryBeanName
public void setFactoryBeanName(String factoryBeanName)(Code)
Specify the factory bean to use, if any.



setFactoryMethodName
public void setFactoryMethodName(String factoryMethodName)(Code)
Specify a factory method, if any. This method will be invoked with constructor arguments, or with no arguments if none are specified. The static method will be invoked on the specifed factory bean, if any, or on the local bean class else.
Parameters:
  factoryMethodName - static factory method name, or null ifnormal constructor creation should be used
See Also:   AbstractBeanDefinition.getBeanClass



setInitMethodName
public void setInitMethodName(String initMethodName)(Code)
Set the name of the initializer method. The default is null in which case there is no initializer method.



setLazyInit
public void setLazyInit(boolean lazyInit)(Code)
Set whether this bean should be lazily initialized.

If false, the bean will get instantiated on startup by bean factories that perform eager initialization of singletons.




setMethodOverrides
public void setMethodOverrides(MethodOverrides methodOverrides)(Code)
Specify method overrides for the bean, if any.



setPropertyValues
public void setPropertyValues(MutablePropertyValues propertyValues)(Code)
Specify property values for this bean, if any.



setResourceDescription
public void setResourceDescription(String resourceDescription)(Code)
Set a description of the resource that this bean definition came from (for the purpose of showing context in case of errors).



setRole
public void setRole(int role)(Code)
Set the role hint for this BeanDefinition.



setScope
public void setScope(String scope)(Code)
Set the name of the target scope for the bean.

Default is "singleton"; the out-of-the-box alternative is "prototype". Extended bean factories might support further scopes.
See Also:   AbstractBeanDefinition.SCOPE_SINGLETON
See Also:   AbstractBeanDefinition.SCOPE_PROTOTYPE




setSingleton
public void setSingleton(boolean singleton)(Code)
Set if this a Singleton, with a single, shared instance returned on all calls. In case of "false", the BeanFactory will apply the Prototype design pattern, with each caller requesting an instance getting an independent instance. How this is exactly defined will depend on the BeanFactory.

"Singletons" are the commoner type, so the default is "true". Note that as of Spring 2.0, this flag is just an alternative way to specify scope="singleton" or scope="prototype".
See Also:   AbstractBeanDefinition.setScope
See Also:   AbstractBeanDefinition.SCOPE_SINGLETON
See Also:   AbstractBeanDefinition.SCOPE_PROTOTYPE




setSource
public void setSource(Object source)(Code)
Set the configuration source Object for this metadata element.

The exact type of the object will depend on the configuration mechanism used.




setSynthetic
public void setSynthetic(boolean synthetic)(Code)
Set whether this bean definition is 'synthetic', that is, not defined by the application itself (for example, an infrastructure bean such as a helper for auto-proxying, created through <aop:config>).



toString
public String toString()(Code)



validate
public void validate() throws BeanDefinitionValidationException(Code)
Validate this bean definition.
throws:
  BeanDefinitionValidationException - in case of validation failure



Methods inherited from org.springframework.core.AttributeAccessorSupport
public String[] attributeNames()(Code)(Java Doc)
protected void copyAttributesFrom(AttributeAccessor source)(Code)(Java Doc)
public boolean equals(Object other)(Code)(Java Doc)
public Object getAttribute(String name)(Code)(Java Doc)
public boolean hasAttribute(String name)(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public Object removeAttribute(String name)(Code)(Java Doc)
public void setAttribute(String name, Object value)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.