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

com.yandex.ydb.table.description.ListDirectoryResult Maven / Gradle / Ivy

package com.yandex.ydb.table.description;

import java.util.List;

import com.yandex.ydb.scheme.SchemeOperationProtos.Entry;


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

    private final List children;

    public ListDirectoryResult(Entry self, List children) {
        super(self);
        this.children = children;
    }

    public List getChildren() {
        return children;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy