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

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

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

import java.util.ArrayList;
import java.util.List;

import com.aliyun.openservices.log.common.LogItem;
import com.aliyun.openservices.log.common.Consts;
import com.aliyun.openservices.log.common.Consts.CompressType;
import com.aliyun.openservices.log.common.TagContent;

/**
 * The request used to send data to sls server
 */
public class PutLogsRequest extends Request {
    private static final long serialVersionUID = 7226856831224917838L;
    private String mLogStore;
    private String mTopic;
    private String mSource;
    private String mHashKey;
    private ArrayList mlogItems;
    private ArrayList mTags = null;
    private CompressType compressType = CompressType.LZ4;
    private String mContentType = Consts.CONST_PROTO_BUF;
    private byte[] mLogGroupBytes = null;
    private Integer hashRouteKeySeqId;
    private String processor;

    /**
     * @return the compressType
     */
    public CompressType GetCompressType() {
        return getCompressType();
    }

    /**
     * @param compressType the compressType to set
     */
    public void SetCompressType(CompressType compressType) {
        setCompressType(compressType);
    }

    public CompressType getCompressType() {
        return compressType;
    }

    public void setCompressType(CompressType compressType) {
        this.compressType = compressType;
    }

    public String getContentType() {
        return mContentType;
    }

    public void setContentType(String contentType) {
        this.mContentType = contentType;
    }

    /**
     * Construct a put log request
     *
     * @param project  project name
     * @param logStore log store name of the project
     * @param topic    topic name of the log store
     * @param source   source of the log
     * @param logItems log data
     * @param hashKey  hashKey
     */
    public PutLogsRequest(String project, String logStore, String topic,
                          String source, List logItems, String hashKey) {
        super(project);
        mLogStore = logStore;
        mTopic = topic;
        mSource = source;
        mlogItems = new ArrayList(logItems);
        mHashKey = hashKey;
    }

    /**
     * Construct a put log request
     *
     * @param project  project name
     * @param logStore log store name of the project
     * @param topic    topic name of the log store
     * @param source   source of the log
     * @param logItems log data
     */
    public PutLogsRequest(String project, String logStore, String topic,
                          String source, List logItems) {
        this(project, logStore, topic, source, logItems, null);
    }

    /**
     * Construct a put log request
     *
     * @param project  project name
     * @param logStore log store name of the project
     * @param topic    topic name of the log store
     * @param logItems log data
     */
    public PutLogsRequest(String project, String logStore, String topic,
                          List logItems) {
        super(project);
        mLogStore = logStore;
        mTopic = topic;
        mlogItems = new ArrayList(logItems);
    }

    /**
     * Construct a put log request
     *
     * @param project       project name
     * @param logStore      log store name of the project
     * @param topic         topic name of the log store
     * @param source        source of the log
     * @param logGroupBytes Porotbuf serialized string of LogGroup
     * @param hashKey       hashKey
     */
    public PutLogsRequest(String project, String logStore, String topic,
                          String source, byte[] logGroupBytes, String hashKey) {
        super(project);
        mLogStore = logStore;
        mTopic = topic;
        mSource = source;
        mLogGroupBytes = logGroupBytes;
        mHashKey = hashKey;
    }

    /**
     * Get log store
     *
     * @return log store
     */
    public String GetLogStore() {
        return mLogStore;
    }

    /**
     * Set log store
     *
     * @param logStore log store name
     */
    public void SetLogStore(String logStore) {
        mLogStore = logStore;
    }

    /**
     * Get the topic
     *
     * @return the topic
     */
    public String GetTopic() {
        return mTopic;
    }

    /**
     * Set topic value
     *
     * @param topic topic value
     */
    public void SetTopic(String topic) {
        mTopic = topic;
    }

    /**
     * Get log source
     *
     * @return log source
     */
    public String GetSource() {
        return mSource;
    }

    /**
     * Set log source
     *
     * @param source log source
     */
    public void SetSource(String source) {
        mSource = source;
    }

    /**
     * Get all the log data
     *
     * @return log data
     */
    public ArrayList GetLogItems() {
        return mlogItems;
    }

    /**
     * Get all the tag
     *
     * @return tag
     */
    public ArrayList GetTags() {
        return mTags;
    }

    /**
     * Get all the logGroupBytes
     *
     * @return logGroupBytes
     */
    public byte[] GetLogGroupBytes() {
        return mLogGroupBytes;
    }

    /**
     * Set the log data , shallow copy is used to set the log data
     *
     * @param logItems log data
     */
    public void SetlogItems(List logItems) {
        mlogItems = new ArrayList(logItems);
    }

    public void SetTags(List tags) {
        mTags = new ArrayList(tags);
    }

    /**
     * Use setHashKey
     *
     * @param hashKey The hash key
     * @deprecated Use setHashKey() instead.
     */
    @Deprecated
    public void SetRouteKey(String hashKey) {
        setHashKey(hashKey);
    }

    /**
     * Use getHashKey
     *
     * @return The hash key
     * @deprecated Use getHashKey() instead.
     */
    @Deprecated
    public String GetRouteKey() {
        return mHashKey;
    }

    public String getHashKey() {
        return mHashKey;
    }

    public void setHashKey(String mHashKey) {
        this.mHashKey = mHashKey;
    }

    public Integer getHashRouteKeySeqId() {
        return hashRouteKeySeqId;
    }

    public void setHashRouteKeySeqId(Integer hashRouteKeySeqId) {
        this.hashRouteKeySeqId = hashRouteKeySeqId;
    }

    public String getProcessor() {
        return processor;
    }

    public void setProcessor(String processor) {
        this.processor = processor;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy