com.qcloud.chdfs.fs.AlreadyLoadedFileSystemInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chdfs_hadoop_plugin_network Show documentation
Show all versions of chdfs_hadoop_plugin_network Show documentation
Tencent Qcloud chdfs hadoop plugins.
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;
}
}