001 package org.kuali.ole.pojo.edi;
002
003 /**
004 * Created by IntelliJ IDEA.
005 * User: palanivel
006 * Date: 3/6/12
007 * Time: 4:09 PM
008 * To change this template use File | Settings | File Templates.
009 */
010 public class CurrencyDetailsSupplierInformation {
011 private String defaultCurrency;
012 private String currencyType;
013 private String orderCurrency;
014
015 public String getDefaultCurrency() {
016 return defaultCurrency;
017 }
018
019 public void setDefaultCurrency(String defaultCurrency) {
020 this.defaultCurrency = defaultCurrency;
021 }
022
023 public String getCurrencyType() {
024 return currencyType;
025 }
026
027 public void setCurrencyType(String currencyType) {
028 this.currencyType = currencyType;
029 }
030
031 public String getOrderCurrency() {
032 return orderCurrency;
033 }
034
035 public void setOrderCurrency(String orderCurrency) {
036 this.orderCurrency = orderCurrency;
037 }
038 }