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

tech.ytsaurus.client.discovery.ListGroupsResult Maven / Gradle / Ivy

The newest version!
package tech.ytsaurus.client.discovery;

import java.util.List;

import tech.ytsaurus.TRspListGroups;

public class ListGroupsResult {
    private final List groupIds;
    private final boolean incomplete;

    public ListGroupsResult(TRspListGroups rsp) {
        this.groupIds = List.copyOf(rsp.getGroupIdsList());
        this.incomplete = rsp.getIncomplete();
    }

    public List getGroupIds() {
        return groupIds;
    }

    public boolean isIncomplete() {
        return incomplete;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy