All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eobjects.analyzer.job.AnalysisJob Maven / Gradle / Ivy

The newest version!
/**
 * AnalyzerBeans
 * Copyright (C) 2014 Neopost - Customer Information Management
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.eobjects.analyzer.job;

import java.util.List;

import org.eobjects.analyzer.connection.Datastore;
import org.eobjects.analyzer.data.InputColumn;
import org.apache.metamodel.schema.Column;

/**
 * Defines a job to be executed by AnalyzerBeans.
 * 
 * A {@link AnalysisJob} contains a set of components.
 * 
 * A {@link AnalysisJob} references a source {@link Datastore} and some
 * {@link Column}s (represented via {@link InputColumn}s) of this datastore.
 * 
 * Building jobs is usually done using the
 * {@link org.eobjects.analyzer.job.builder.AnalysisJobBuilder} class.
 * 
 * Executing jobs is usually done using the
 * {@link org.eobjects.analyzer.job.runner.AnalysisRunner} interface.
 */
public interface AnalysisJob {

    /**
     * Gets the {@link AnalysisJobMetadata} which add additional descriptions
     * and properties of the job.
     * 
     * @return
     */
    public AnalysisJobMetadata getMetadata();

    /**
     * Gets the {@link Datastore} that this job uses as it's source.
     * 
     * @return
     */
    public Datastore getDatastore();

    /**
     * Gets the source columns of the {@link Datastore} (see
     * {@link #getDatastore()}) referenced by this job.
     * 
     * @return
     */
    public List> getSourceColumns();

    /**
     * Gets all {@link TransformerJob}s contained in this job.
     * 
     * @return
     */
    public List getTransformerJobs();

    /**
     * Gets all {@link FilterJob}s contained in this job.
     * 
     * @return
     */
    public List getFilterJobs();

    /**
     * Gets all {@link AnalyzerJob}s contained in this job.
     * 
     * @return
     */
    public List getAnalyzerJobs();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy