Java Doc for SimplePropertyConfiguration.java in  » ESB » mule » org » mule » config » spring » parsers » assembly » configuration » 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 » ESB » mule » org.mule.config.spring.parsers.assembly.configuration 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.mule.config.spring.parsers.assembly.configuration.SimplePropertyConfiguration

SimplePropertyConfiguration
public class SimplePropertyConfiguration implements PropertyConfiguration(Code)
A direct implementation of PropertyConfiguration

Inner Class :public static class NamedValueMap
Inner Class :public static class MapValueMap implements ValueMap



Method Summary
public  voidaddAlias(String alias, String propertyName)
    
public  voidaddCollection(String propertyName)
    
public  voidaddIgnored(String propertyName)
    
public  voidaddMapping(String propertyName, Map mappings)
    
public  voidaddMapping(String propertyName, String mappings)
    
public  voidaddMapping(String propertyName, ValueMap mappings)
    
public  voidaddReference(String propertyName)
    
protected  StringdropRef(String name)
    
public  StringgetAttributeMapping(String alias)
    
public  StringgetAttributeMapping(String alias, String deflt)
    
public  SinglePropertygetSingleProperty(String name)
    
public  booleanisCollection(String propertyName)
    
public  booleanisIgnored(String propertyName)
    
public  booleanisReference(String attributeName)
     A property can be explicitly registered as a bean reference via registerBeanReference() or it can simply use the "-ref" suffix.
public  voidremoveIgnored(String propertyName)
    
public  voidsetIgnoredDefault(boolean ignoreAll)
    
public  StringtranslateName(String oldName)
     Extract a JavaBean property name from the supplied attribute name.

The default implementation uses the org.springframework.core.Conventions.attributeNameToPropertyName(String) method to perform the extraction.

The name returned must obey the standard JavaBean property name conventions.

public  ObjecttranslateValue(String name, String value)
    



Method Detail
addAlias
public void addAlias(String alias, String propertyName)(Code)



addCollection
public void addCollection(String propertyName)(Code)



addIgnored
public void addIgnored(String propertyName)(Code)



addMapping
public void addMapping(String propertyName, Map mappings)(Code)



addMapping
public void addMapping(String propertyName, String mappings)(Code)



addMapping
public void addMapping(String propertyName, ValueMap mappings)(Code)



addReference
public void addReference(String propertyName)(Code)



dropRef
protected String dropRef(String name)(Code)



getAttributeMapping
public String getAttributeMapping(String alias)(Code)



getAttributeMapping
public String getAttributeMapping(String alias, String deflt)(Code)



getSingleProperty
public SingleProperty getSingleProperty(String name)(Code)



isCollection
public boolean isCollection(String propertyName)(Code)



isIgnored
public boolean isIgnored(String propertyName)(Code)



isReference
public boolean isReference(String attributeName)(Code)
A property can be explicitly registered as a bean reference via registerBeanReference() or it can simply use the "-ref" suffix.
Parameters:
  attributeName - true if the name appears to correspond to a reference



removeIgnored
public void removeIgnored(String propertyName)(Code)



setIgnoredDefault
public void setIgnoredDefault(boolean ignoreAll)(Code)



translateName
public String translateName(String oldName)(Code)
Extract a JavaBean property name from the supplied attribute name.

The default implementation uses the org.springframework.core.Conventions.attributeNameToPropertyName(String) method to perform the extraction.

The name returned must obey the standard JavaBean property name conventions. For example for a class with a setter method 'setBingoHallFavourite(String)', the name returned had better be 'bingoHallFavourite' (with that exact casing).
Parameters:
  oldName - the attribute name taken straight from the XML element being parsed; will never be null the extracted JavaBean property name; must never be null




translateValue
public Object translateValue(String name, String value)(Code)



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)

w__w_w_.__ja___v_a_2_s__.c___o__m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.