
org.frameworkset.tran.plugin.mysqlbinlog.input.BinFileInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-datatran-binlog Show documentation
Show all versions of bboss-datatran-binlog Show documentation
bboss etl,datastream,Elasticsearch/Opensearch Client with restful and java api without elasticsearch jar dependended.
The newest version!
package org.frameworkset.tran.plugin.mysqlbinlog.input;
public class BinFileInfo {
private String fileName;
private Long fileSize;
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public Long getFileSize() {
return fileSize;
}
public void setFileSize(Long fileSize) {
this.fileSize = fileSize;
}
@Override
public String toString(){
if(fileSize != null)
return fileName+"/"+fileSize;
else{
return fileName;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy