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

org.frameworkset.tran.plugin.mysqlbinlog.input.BinFileInfo Maven / Gradle / Ivy

Go to download

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