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

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

There is a newer version: 0.6.3
Show newest version

package com.aliyun.openservices.log.response;

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

public class GetAppliedMachineGroupsResponse extends Response {

    private static final long serialVersionUID = -9132526915584919104L;

    private List machineGroups;

    public GetAppliedMachineGroupsResponse(Map headers, List group) {
        super(headers);
        SetMachineGroups(group);
    }

    public List GetMachineGroups() {
        return machineGroups;
    }

    public void SetMachineGroups(List machineGroups) {
        this.machineGroups = new ArrayList(machineGroups);
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy