org.notima.businessobjects.adapter.json.JsonPropertyFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonAdapter Show documentation
Show all versions of jsonAdapter Show documentation
Adapter to convert JSON data to the common format found on
https://github.com/notima/businessobjects
The newest version!
package org.notima.businessobjects.adapter.json;
import java.util.Dictionary;
public class JsonPropertyFile {
private String tenantFile;
private String customerFile;
private String paymentBatchChannelFile;
public void setFromDictionary(Dictionary properties) {
tenantFile = (String)properties.get("tenantFile");
customerFile = (String)properties.get("customerFile");
paymentBatchChannelFile = (String)properties.get("paymentBatchChannelFile");
}
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;
}
public String getPaymentBatchChannelFile() {
return paymentBatchChannelFile;
}
public void setPaymentBatchChannelFile(String paymentBatchChannelFile) {
this.paymentBatchChannelFile = paymentBatchChannelFile;
}
}