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

com.aliyun.openservices.log.response.BasicGetLogsResponse Maven / Gradle / Ivy

There is a newer version: 0.6.115
Show newest version
package com.aliyun.openservices.log.response;

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

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

public class BasicGetLogsResponse extends Response {

    // TODO change to List
    protected ArrayList logs;

    public BasicGetLogsResponse(Map headers) {
        super(headers);
        this.logs = new ArrayList();
    }

    public List getLogs() {
        return logs;
    }

    public void setLogs(List logs) {
        this.logs = new ArrayList(logs);
    }

    public void addLog(QueriedLog log) {
        this.logs.add(log);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy