Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.jbpm.util.experimental.container
Interface Configuration  view Configuration download Configuration.java


public interface Configuration

contains the configurations as specified within a configuration-element inside the configuration.xml.

The 'path' parameter is a dot-separated hierarchical name. The hierarchy corresponds with the xml-nesting. E.g.

 
 
   path one.two.three could correspond with
   
   <one>
     <two>
       <three>
         --this is the value--
       </three>
     </two>
   </one>
   
 
 
Alternatively, XPath could be used for this, I think.


Method Summary
 java.lang.Object get(java.lang.String path)
           
 void set(java.lang.String path, java.lang.Object value)
           
 

Method Detail

get

public java.lang.Object get(java.lang.String path)

set

public void set(java.lang.String path,
                java.lang.Object value)