Package com.cin.service

Examples of com.cin.service.StaticDataService


  @BeforeClass
  public static void setUpBeforeClass() throws Exception {
    db = new Database();
    db.resetAllData();
   
    staticDataService = new StaticDataService();
    aRemote = EJBLookup.getInstance().getTransactionEJB();
  }
View Full Code Here


 
  /**
     * @see MessageListener#onMessage(Message)
     */
    public void onMessage(Message message) {
      StaticDataService aService = new StaticDataService();
     
        try {
          ObjectMessage objectMessage = (ObjectMessage) message;
          Object object = objectMessage.getObject();
          if( object == null ){
           
                aService.updateMeanWeekWage();
          } else {
            WageDTO aWage = (WageDTO) object;
            aService.updateMeanWeekWage( aWage );
          }
    }
        catch (JMSException pException) {
      EventLogger.getInstance().log(Level.SEVERE, pException.getMessage());
    }
View Full Code Here

TOP

Related Classes of com.cin.service.StaticDataService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.