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

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

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

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

public class GetAppliedConfigResponse extends Response {

    private static final long serialVersionUID = -9132526915584919104L;

    private List configs;

    public GetAppliedConfigResponse(Map headers, List group) {
        super(headers);
        SetConfigs(group);
    }

    public List Getconfigs() {
        return configs;
    }

    public void SetConfigs(List configs) {
        this.configs = new ArrayList(configs);
    }

    public int GetTotal() {
        return configs.size();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy