org.notima.businessobjects.adapter.csv.CsvPropertyFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of csvAdapter Show documentation
Show all versions of csvAdapter Show documentation
Adapter to convert CSV data to the common format found on
https://github.com/notima/businessobjects
The newest version!
package org.notima.businessobjects.adapter.csv;
import java.util.Dictionary;
public class CsvPropertyFile {
private String tenantFile;
private String customerFile;
public void setFromDictionary(Dictionary properties) {
tenantFile = (String)properties.get("tenantFile");
customerFile = (String)properties.get("customerFile");
}
public String getTenantFile() {
return tenantFile;
}
public void setTenantFile(String tenantFile) {
this.tenantFile = tenantFile;
}
public String getCustomerFile() {
return customerFile;
}
public void setCustomerFile(String customerFile) {
this.customerFile = customerFile;
}
}