1 package org.kuali.ole.pojo.edi;
2
3
4
5
6
7
8
9
10 public class MessageCreationInfoDetails {
11 private String messageCreationInfoConstant;
12 private String messageCreationInfoDate;
13 private String messageCreationInfoDateFormat;
14
15 public String getMessageCreationInfoConstant() {
16 return messageCreationInfoConstant;
17 }
18
19 public void setMessageCreationInfoConstant(String messageCreationInfoConstant) {
20 this.messageCreationInfoConstant = messageCreationInfoConstant;
21 }
22
23 public String getMessageCreationInfoDate() {
24 return messageCreationInfoDate;
25 }
26
27 public void setMessageCreationInfoDate(String messageCreationInfoDate) {
28 this.messageCreationInfoDate = messageCreationInfoDate;
29 }
30
31 public String getMessageCreationInfoDateFormat() {
32 return messageCreationInfoDateFormat;
33 }
34
35 public void setMessageCreationInfoDateFormat(String messageCreationInfoDateFormat) {
36 this.messageCreationInfoDateFormat = messageCreationInfoDateFormat;
37 }
38
39 }