com.mntviews.upload.model.RecipientData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mnt-upload Show documentation
Show all versions of mnt-upload Show documentation
Data upload library for the different types of databases
The newest version!
package com.mntviews.upload.model;
public class RecipientData {
String schemaName;
String tableName;
String fieldName;
String sourceIdFieldName;
String sourceFileIdFieldName;
String sourceFileNameFieldName;
Long id;
Long fileId;
String fileName;
public String getSchemaName() {
return schemaName;
}
public void setSchemaName(String schemaName) {
this.schemaName = schemaName;
}
public String getTableName() {
return tableName;
}
public void setTableName(String tableName) {
this.tableName = tableName;
}
public String getFieldName() {
return fieldName;
}
public void setFieldName(String fieldName) {
this.fieldName = fieldName;
}
public String getSourceFileIdFieldName() {
return sourceFileIdFieldName;
}
public void setSourceFileIdFieldName(String sourceFileIdFieldName) {
this.sourceFileIdFieldName = sourceFileIdFieldName;
}
public String getSourceFileNameFieldName() {
return sourceFileNameFieldName;
}
public void setSourceFileNameFieldName(String sourceFileNameFieldName) {
this.sourceFileNameFieldName = sourceFileNameFieldName;
}
public String getSourceIdFieldName() {
return sourceIdFieldName;
}
public void setSourceIdFieldName(String sourceIdFieldName) {
this.sourceIdFieldName = sourceIdFieldName;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getFileId() {
return fileId;
}
public void setFileId(Long fileId) {
this.fileId = fileId;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy