com.ut.healthelink.jobs.MoveRhapsodyFiles.java Source code

Java tutorial

Introduction

Here is the source code for com.ut.healthelink.jobs.MoveRhapsodyFiles.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package com.ut.healthelink.jobs;

import com.ut.healthelink.service.transactionInManager;

import java.util.logging.Level;
import java.util.logging.Logger;

import org.quartz.Job;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.context.support.SpringBeanAutowiringSupport;

/**
 *
 * @author gchan
 */
public class MoveRhapsodyFiles implements Job {

    @Autowired
    private transactionInManager transactionInManager;

    @Override
    public void execute(JobExecutionContext context) throws JobExecutionException {

        try {
            SpringBeanAutowiringSupport.processInjectionBasedOnCurrentContext(this);
            transactionInManager.moveRhapsodyFiles();
        } catch (Exception ex) {
            try {
                throw new Exception("Error occurred trying to move Rhapsody files from schedule task", ex);
            } catch (Exception ex1) {
                Logger.getLogger(MoveRhapsodyFiles.class.getName()).log(Level.SEVERE, null, ex1);
            }
        }

    }

}