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

org.notima.businessobjects.adapter.json.JsonPropertyFile Maven / Gradle / Ivy

Go to download

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;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy