hi:
  Just a newbie question on business object requirement for ojb.
do I need to have explisit properties like : 
          String a ; 
          String b ; 
        so on ....
Or  my java bean structure is sufficient: 
     class MyObj { 
          private Hashtable valueSource;
 
          public String getA () 
          { return valueSource.get("A");}
          public void setA ( String val ) 
          { valueSource.put("A", val);} 
         :::::::::
   } 
 
Although, I have described {a,b,...} are the fields in MyObj class in the 
repository.xml.
Tia, 
 


Reply via email to