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

com.qubole.qds.sdk.java.entities.ScheduleCommand Maven / Gradle / Ivy

Go to download

A Java library that provides the tools you need to authenticate with, and use the Qubole Data Service API.

There is a newer version: 1.3.0
Show newest version
/**
 * Copyright 2014- Qubole Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.qubole.qds.sdk.java.entities;

import org.codehaus.jackson.annotate.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class ScheduleCommand
{
    private boolean approx_mode;
    private String query;
    private boolean approx_aggregations;
    private boolean sample;
    private String loader_stable;
    private String script_location;
    private String loader_table_name;
    private String md_cmd;

    public ScheduleCommand()
    {
    }

    public ScheduleCommand(boolean approx_mode, String query, boolean approx_aggregations, boolean sample, String loader_stable, String script_location, String loader_table_name, String md_cmd)
    {
        this.approx_mode = approx_mode;
        this.query = query;
        this.approx_aggregations = approx_aggregations;
        this.sample = sample;
        this.loader_stable = loader_stable;
        this.script_location = script_location;
        this.loader_table_name = loader_table_name;
        this.md_cmd = md_cmd;
    }

    public boolean isApprox_mode()
    {
        return approx_mode;
    }

    public void setApprox_mode(boolean approx_mode)
    {
        this.approx_mode = approx_mode;
    }

    public String getQuery()
    {
        return query;
    }

    public void setQuery(String query)
    {
        this.query = query;
    }

    public boolean isApprox_aggregations()
    {
        return approx_aggregations;
    }

    public void setApprox_aggregations(boolean approx_aggregations)
    {
        this.approx_aggregations = approx_aggregations;
    }

    public boolean isSample()
    {
        return sample;
    }

    public void setSample(boolean sample)
    {
        this.sample = sample;
    }

    public String getLoader_stable()
    {
        return loader_stable;
    }

    public void setLoader_stable(String loader_stable)
    {
        this.loader_stable = loader_stable;
    }

    public String getScript_location()
    {
        return script_location;
    }

    public void setScript_location(String script_location)
    {
        this.script_location = script_location;
    }

    public String getLoader_table_name()
    {
        return loader_table_name;
    }

    public void setLoader_table_name(String loader_table_name)
    {
        this.loader_table_name = loader_table_name;
    }

    public String getMd_cmd()
    {
        return md_cmd;
    }

    public void setMd_cmd(String md_cmd)
    {
        this.md_cmd = md_cmd;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy