Java Doc for JNDIConfiguration.java in  » Library » Apache-commons-configuration-1.4-src » org » apache » commons » 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 » Library » Apache commons configuration 1.4 src » org.apache.commons.configuration 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.commons.configuration.AbstractConfiguration
   org.apache.commons.configuration.JNDIConfiguration

JNDIConfiguration
public class JNDIConfiguration extends AbstractConfiguration (Code)
This Configuration class allows you to interface with a JNDI datasource. A JNDIConfiguration is read-only, write operations will throw an UnsupportedOperationException. The clear operations are supported but the underlying JNDI data source is not changed.
author:
   Eric Pugh
version:
   $Id: JNDIConfiguration.java 497181 2007-01-17 21:35:28Z oheger $



Constructor Summary
public  JNDIConfiguration()
     Creates a JNDIConfiguration using the default initial context as the root of the properties.
public  JNDIConfiguration(String prefix)
     Creates a JNDIConfiguration using the default initial context, shifted with the specified prefix, as the root of the properties.
public  JNDIConfiguration(Context context)
     Creates a JNDIConfiguration using the specified initial context as the root of the properties.
public  JNDIConfiguration(Context context, String prefix)
     Creates a JNDIConfiguration using the specified initial context shifted by the specified prefix as the root of the properties.

Method Summary
protected  voidaddPropertyDirect(String key, Object obj)
    
public  voidclearProperty(String key)
     Removes the specified property.
public  booleancontainsKey(String key)
     Checks whether the specified key is contained in this configuration.
public  ContextgetBaseContext()
     Return the base context with the prefix applied.
public  ContextgetContext()
     Return the initial context used by this configuration.
public  IteratorgetKeys()
     Returns an iterator with all property keys stored in this configuration.
public  IteratorgetKeys(String prefix)
     Returns an iterator with all property keys starting with the given prefix.
public  StringgetPrefix()
     Returns the prefix.
public  ObjectgetProperty(String key)
     Returns the value of the specified property.
public  booleanisEmpty()
     Returns a flag whether this configuration is empty.
public  voidsetContext(Context context)
     Set the initial context of the configuration.
public  voidsetPrefix(String prefix)
     Sets the prefix.
public  voidsetProperty(String key, Object value)
    


Constructor Detail
JNDIConfiguration
public JNDIConfiguration() throws NamingException(Code)
Creates a JNDIConfiguration using the default initial context as the root of the properties.
throws:
  NamingException - thrown if an error occurs when initializing the default context



JNDIConfiguration
public JNDIConfiguration(String prefix) throws NamingException(Code)
Creates a JNDIConfiguration using the default initial context, shifted with the specified prefix, as the root of the properties.
Parameters:
  prefix - the prefix
throws:
  NamingException - thrown if an error occurs when initializing the default context



JNDIConfiguration
public JNDIConfiguration(Context context)(Code)
Creates a JNDIConfiguration using the specified initial context as the root of the properties.
Parameters:
  context - the initial context



JNDIConfiguration
public JNDIConfiguration(Context context, String prefix)(Code)
Creates a JNDIConfiguration using the specified initial context shifted by the specified prefix as the root of the properties.
Parameters:
  context - the initial context
Parameters:
  prefix - the prefix




Method Detail
addPropertyDirect
protected void addPropertyDirect(String key, Object obj)(Code)

This operation is not supported and will throw an UnsupportedOperationException.


Parameters:
  key - the key
Parameters:
  obj - the value
throws:
  UnsupportedOperationException -



clearProperty
public void clearProperty(String key)(Code)
Removes the specified property.
Parameters:
  key - the key of the property to remove



containsKey
public boolean containsKey(String key)(Code)
Checks whether the specified key is contained in this configuration.
Parameters:
  key - the key to check a flag whether this key is stored in this configuration



getBaseContext
public Context getBaseContext() throws NamingException(Code)
Return the base context with the prefix applied. the base context
throws:
  NamingException - if an error occurs



getContext
public Context getContext()(Code)
Return the initial context used by this configuration. This context is independent of the prefix specified. the initial context



getKeys
public Iterator getKeys()(Code)
Returns an iterator with all property keys stored in this configuration. an iterator with all keys



getKeys
public Iterator getKeys(String prefix)(Code)
Returns an iterator with all property keys starting with the given prefix.
Parameters:
  prefix - the prefix an iterator with the selected keys



getPrefix
public String getPrefix()(Code)
Returns the prefix. the prefix



getProperty
public Object getProperty(String key)(Code)
Returns the value of the specified property.
Parameters:
  key - the key of the property the value of this property



isEmpty
public boolean isEmpty()(Code)
Returns a flag whether this configuration is empty. the empty flag



setContext
public void setContext(Context context)(Code)
Set the initial context of the configuration.
Parameters:
  context - the context



setPrefix
public void setPrefix(String prefix)(Code)
Sets the prefix.
Parameters:
  prefix - The prefix to set



setProperty
public void setProperty(String key, Object value)(Code)

This operation is not supported and will throw an UnsupportedOperationException.


Parameters:
  key - the key
Parameters:
  value - the value
throws:
  UnsupportedOperationException -



Fields inherited from org.apache.commons.configuration.AbstractConfiguration
final protected static String END_TOKEN(Code)(Java Doc)
final public static int EVENT_ADD_PROPERTY(Code)(Java Doc)
final public static int EVENT_CLEAR(Code)(Java Doc)
final public static int EVENT_CLEAR_PROPERTY(Code)(Java Doc)
final public static int EVENT_READ_PROPERTY(Code)(Java Doc)
final public static int EVENT_SET_PROPERTY(Code)(Java Doc)
final protected static String START_TOKEN(Code)(Java Doc)

Methods inherited from org.apache.commons.configuration.AbstractConfiguration
public void addErrorLogListener()(Code)(Java Doc)
public void addProperty(String key, Object value)(Code)(Java Doc)
abstract protected void addPropertyDirect(String key, Object value)(Code)(Java Doc)
public void clear()(Code)(Java Doc)
public void clearProperty(String key)(Code)(Java Doc)
protected void clearPropertyDirect(String key)(Code)(Java Doc)
abstract public boolean containsKey(String key)(Code)(Java Doc)
protected ConfigurationInterpolator createInterpolator()(Code)(Java Doc)
public BigDecimal getBigDecimal(String key)(Code)(Java Doc)
public BigDecimal getBigDecimal(String key, BigDecimal defaultValue)(Code)(Java Doc)
public BigInteger getBigInteger(String key)(Code)(Java Doc)
public BigInteger getBigInteger(String key, BigInteger defaultValue)(Code)(Java Doc)
public boolean getBoolean(String key)(Code)(Java Doc)
public boolean getBoolean(String key, boolean defaultValue)(Code)(Java Doc)
public Boolean getBoolean(String key, Boolean defaultValue)(Code)(Java Doc)
public byte getByte(String key)(Code)(Java Doc)
public byte getByte(String key, byte defaultValue)(Code)(Java Doc)
public Byte getByte(String key, Byte defaultValue)(Code)(Java Doc)
public static char getDefaultListDelimiter()(Code)(Java Doc)
public static char getDelimiter()(Code)(Java Doc)
public double getDouble(String key)(Code)(Java Doc)
public double getDouble(String key, double defaultValue)(Code)(Java Doc)
public Double getDouble(String key, Double defaultValue)(Code)(Java Doc)
public float getFloat(String key)(Code)(Java Doc)
public float getFloat(String key, float defaultValue)(Code)(Java Doc)
public Float getFloat(String key, Float defaultValue)(Code)(Java Doc)
public int getInt(String key)(Code)(Java Doc)
public int getInt(String key, int defaultValue)(Code)(Java Doc)
public Integer getInteger(String key, Integer defaultValue)(Code)(Java Doc)
public ConfigurationInterpolator getInterpolator()(Code)(Java Doc)
abstract public Iterator getKeys()(Code)(Java Doc)
public Iterator getKeys(String prefix)(Code)(Java Doc)
public List getList(String key)(Code)(Java Doc)
public List getList(String key, List defaultValue)(Code)(Java Doc)
public char getListDelimiter()(Code)(Java Doc)
public Log getLogger()(Code)(Java Doc)
public long getLong(String key)(Code)(Java Doc)
public long getLong(String key, long defaultValue)(Code)(Java Doc)
public Long getLong(String key, Long defaultValue)(Code)(Java Doc)
public Properties getProperties(String key)(Code)(Java Doc)
public Properties getProperties(String key, Properties defaults)(Code)(Java Doc)
public short getShort(String key)(Code)(Java Doc)
public short getShort(String key, short defaultValue)(Code)(Java Doc)
public Short getShort(String key, Short defaultValue)(Code)(Java Doc)
public String getString(String key)(Code)(Java Doc)
public String getString(String key, String defaultValue)(Code)(Java Doc)
public String[] getStringArray(String key)(Code)(Java Doc)
public synchronized StrSubstitutor getSubstitutor()(Code)(Java Doc)
protected String interpolate(String base)(Code)(Java Doc)
protected Object interpolate(Object value)(Code)(Java Doc)
protected String interpolateHelper(String base, List priorVariables)(Code)(Java Doc)
public boolean isDelimiterParsingDisabled()(Code)(Java Doc)
abstract public boolean isEmpty()(Code)(Java Doc)
public boolean isThrowExceptionOnMissing()(Code)(Java Doc)
protected Object resolveContainerStore(String key)(Code)(Java Doc)
public static void setDefaultListDelimiter(char delimiter)(Code)(Java Doc)
public static void setDelimiter(char delimiter)(Code)(Java Doc)
public void setDelimiterParsingDisabled(boolean delimiterParsingDisabled)(Code)(Java Doc)
public void setListDelimiter(char listDelimiter)(Code)(Java Doc)
public void setLogger(Log log)(Code)(Java Doc)
public void setProperty(String key, Object value)(Code)(Java Doc)
public void setThrowExceptionOnMissing(boolean throwExceptionOnMissing)(Code)(Java Doc)
public Configuration subset(String prefix)(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.