com.thesoftwareguild.flightmaster.queryExecutor.ExecutorQuartz.java Source code

Java tutorial

Introduction

Here is the source code for com.thesoftwareguild.flightmaster.queryExecutor.ExecutorQuartz.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.thesoftwareguild.flightmaster.queryExecutor;

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;

/**
 *
 * @author yan
 */
public class ExecutorQuartz implements Executor {

    private ApplicationContext context;

    @Override
    public void addToExecutor(Request request) {
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    }

    @Override
    public void run() {
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    }

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    }

}