1 package org.kuali.ole.pojo.edi;
2
3 /**
4 * Created with IntelliJ IDEA.
5 * User: palanivel
6 * Date: 7/26/13
7 * Time: 3:53 PM
8 * To change this template use File | Settings | File Templates.
9 */
10 public class Monetary {
11
12 private MonetaryInformation monetaryInformation;
13
14 public MonetaryInformation getMonetaryInformation() {
15 return monetaryInformation;
16 }
17
18 public void setMonetaryInformation(MonetaryInformation monetaryInformation) {
19 this.monetaryInformation = monetaryInformation;
20 }
21 }