1 package org.kuali.ole.pojo.edi;
2
3 /**
4 * Created by IntelliJ IDEA.
5 * User: palanivel
6 * Date: 3/6/12
7 * Time: 5:51 PM
8 * To change this template use File | Settings | File Templates.
9 */
10 public class SummarySection {
11 private String separatorInformation;
12
13 public String getSeparatorInformation() {
14 return separatorInformation;
15 }
16
17 public void setSeparatorInformation(String separatorInformation) {
18 this.separatorInformation = separatorInformation;
19 }
20 }