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

com.qcloud.chdfs.fs.AlreadyLoadedFileSystemInfo Maven / Gradle / Ivy

There is a newer version: 3.5
Show newest version
package com.qcloud.chdfs.fs;

public class AlreadyLoadedFileSystemInfo {
    String versionId;
    String jarPath;
    String jarMd5;
    Class chdfsFSClass;

    public AlreadyLoadedFileSystemInfo(String versionId, String jarPath, String jarMd5,
            Class chdfsFSClass) {
        this.versionId = versionId;
        this.jarPath = jarPath;
        this.jarMd5 = jarMd5;
        this.chdfsFSClass = chdfsFSClass;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy