tech.ydb.scheme.description.DescribePathResult Maven / Gradle / Ivy
package tech.ydb.scheme.description;
import tech.ydb.proto.scheme.SchemeOperationProtos;
/**
* @author Sergey Polovko
*/
public class DescribePathResult {
private final SchemeOperationProtos.Entry self;
protected DescribePathResult(SchemeOperationProtos.Entry self) {
this.self = self;
}
public DescribePathResult(SchemeOperationProtos.DescribePathResult result) {
this(result.getSelf());
}
public SchemeOperationProtos.Entry getSelf() {
return self;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy