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

com.aliyun.openservices.log.request.GetProjectLogsRequest Maven / Gradle / Ivy

There is a newer version: 0.6.115
Show newest version
/*
 * Copyright (C) Alibaba Cloud Computing All rights reserved.
 */
package com.aliyun.openservices.log.request;

import com.aliyun.openservices.log.common.Consts;

/**
 * The Request used to get data of a query from sls server
 *
 * @author sls_dev
 *
 */
public class GetProjectLogsRequest extends Request {
    private static final long serialVersionUID = -484272901258629068L;


    /**
     * Construct a the request
     *
     * @param project
     *            project name
     * @param query
     *            user query
     */
    public GetProjectLogsRequest(String project, String query) {
        super(project);
        SetQuery(query);
    }


    /**
     * Set query
     *
     * @param query
     *            user define query
     */
    public void SetQuery(String query) {
        SetParam(Consts.CONST_QUERY, query);
    }

    /**
     * Get Query
     *
     * @return query
     */
    public String GetQuery() {
        return GetParam(Consts.CONST_QUERY);
    }

    /**
     * Set request powerSql flag
     *
     * @param powerSql
     *            powerSql flag
     */
    public void SetPowerSql(boolean powerSql) {
        SetParam(Consts.CONST_POWER_SQL, String.valueOf(powerSql));
    }

    /**
     * Get request powerSql flag
     *
     * @return powerSql flag
     */
    public boolean GetPowerSql() {
        String powerSql = GetParam(Consts.CONST_POWER_SQL);
        if (powerSql.isEmpty()) {
            return false;
        } else {
            return Boolean.parseBoolean(powerSql);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy