tetrad.rrd.TestTotalInfo.java Source code

Java tutorial

Introduction

Here is the source code for tetrad.rrd.TestTotalInfo.java

Source

/*******************************************************************************
 * "mongobird" is released under a dual license model designed to developers 
 * and commercial deployment.
 * 
 * For using OEMs(Original Equipment Manufacturers), ISVs(Independent Software
 * Vendor), ISPs(Internet Service Provider), VARs(Value Added Resellers) 
 * and another distributors, or for using include changed issue
 * (modify / application), it must have to follow the Commercial License policy.
 * To check the Commercial License Policy, you need to contact Cardinal Info.Tech.Co., Ltd.
 * (http://www.citsoft.net)
 *  *
 * If not using Commercial License (Academic research or personal research),
 * it might to be under AGPL policy. To check the contents of the AGPL terms,
 * please see "http://www.gnu.org/licenses/"
 ******************************************************************************/
package tetrad.rrd;

import net.cit.tetrad.rrd.batch.TotalInfoScheduling;
import net.cit.tetrad.rrd.batch.job.TotalInfoJob;

import org.springframework.context.support.ClassPathXmlApplicationContext;

public class TestTotalInfo extends Thread {

    /**
     * @param args
     * @throws Exception 
     */
    public static void main(String[] args) throws Exception {
        TotalInfoScheduling totSchedul = new TotalInfoScheduling();
        totSchedul.run();
    }

}