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

tech.ydb.scheme.description.ListDirectoryResult Maven / Gradle / Ivy

package tech.ydb.scheme.description;

import java.util.List;

import tech.ydb.proto.scheme.SchemeOperationProtos;

/**
 * @author Sergey Polovko
 */
public class ListDirectoryResult extends DescribePathResult {

    private final List children;

    public ListDirectoryResult(SchemeOperationProtos.ListDirectoryResult result) {
        super(result.getSelf());
        this.children = result.getChildrenList();
    }

    public List getChildren() {
        return children;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy