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

com.facebook.presto.lakesoul.pojo.Path Maven / Gradle / Ivy

There is a newer version: 2.5.1-presto-0.28
Show newest version
// SPDX-FileCopyrightText: 2023 LakeSoul Contributors
//
// SPDX-License-Identifier: Apache-2.0

package com.facebook.presto.lakesoul.pojo;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

public class Path extends org.apache.hadoop.fs.Path {
    private String filename;

    @JsonCreator
    public Path(@JsonProperty("filename") String filename) {
        super(filename);
        this.filename = filename;
    }


    @JsonProperty
    public String getFilename(){
        return this.filename;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy