1 package com.instantbank.component.lettertemplate.util;
2
3 import java.util.*;
4 import java.io.Serializable;
5
6
12 public class JobLogInfo
13 implements Serializable {
14
15
18 private String name;
19
20
23 private String description;
24
25
28 private String executionDate;
29
30
33 private String jobOk;
34
35
38 private String numberRecords;
39
40
46 private ArrayList fileLogInfo;
47
48
49
58 public JobLogInfo(String name, String description, String executionDate,
59 String jobOk, String numberRecords) {
60
61 this.name = name;
62 this.description = description;
63 this.executionDate = executionDate;
64 this.jobOk = jobOk;
65 this.numberRecords = numberRecords;
66 this.fileLogInfo = new ArrayList();
67 }
68
69
70
75 public String getName() {
76 return (this.name);
77 }
78
79
80
85 public String getDescription() {
86 return (this.description);
87 }
88
89
90
95 public String getExecutionDate() {
96 return (this.executionDate);
97 }
98
99
100
105 public String getJobOk() {
106 return (this.jobOk);
107 }
108
109
110
115 public String getNumberRecords() {
116 return (this.numberRecords);
117 }
118
119
120
125 public ArrayList getFileLogInfo() {
126 return (this.fileLogInfo);
127 }
128
129
130
135 public String toString() {
136
137 StringBuffer toString = new StringBuffer();
138 toString.append("\nname = ");
139 toString.append(name);
140 toString.append("\ndescription = ");
141 toString.append(description);
142 toString.append("\nexecutionDate = ");
143 toString.append(executionDate);
144 toString.append("\njobOk = ");
145 toString.append(jobOk);
146 toString.append("\nnumberRecords = ");
147 toString.append(numberRecords);
148 toString.append("\nfileLogInfo = ");
149 toString.append(fileLogInfo);
150 toString.append("\n");
151
152 return new String(toString);
153 }
154
155 }
156