1 Reply Latest reply on Aug 10, 2009 2:32 PM by cash1981

    Access inner class from components.xml

    cash1981

      I have an inner class and I want to access that class from components.xml. Anybody know how?


      I want to access FraTil class which is a public static inner class of Tidsrom



      <component name="tidsromFraTilTest" class="process.Tidsrom.FraTil">
                <property name="fromDate">12.12.2009</property>
                <property name="toDate">31.12.2009</property>
                <property name="numberOfTrips">2</property>
                <property name="numberOfYears">0</property>
           </component>
           
           <component name="timeslotTest" class="process.Tidsrom">
                <property name="type">Something</property>
                <property name="fromTo">
                     <value>#{tidsromFraTilTest}</value>
                </property>
                <property name="dateTo">31.12.2009</property>
           </component>



      But I get a Caused by: java.lang.ClassNotFoundException: No ClassLoaders found for: process.motorferdsel.Tidsrom.FraTil exception

        • 1. Re: Access inner class from components.xml
          cash1981


          public class Tidsrom {
               private String type;
               private List<FraTil> fromTo = new ArrayList<FraTil>();
          
               public static class FraTil {
                           private Date fromDate;
                    private Date toDate;
                    private String numberOfTrips;
                    private Integer numberOfYears;
                    
                  }
          



          This is how the class looks like