View Javadoc

1   /**
2    * Copyright 2011 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  
16  package org.kuali.common.impex.data.service.impl;
17  
18  import java.io.File;
19  import java.util.List;
20  
21  public class DumpTableResult {
22  
23      long rows;
24      long size;
25      long start;
26      long finish;
27      long elapsed;
28      List<File> files;
29      DumpTableContext tableContext;
30  
31      public long getElapsed() {
32          return elapsed;
33      }
34  
35      public void setElapsed(long elapsed) {
36          this.elapsed = elapsed;
37      }
38  
39      public List<File> getFiles() {
40          return files;
41      }
42  
43      public void setFiles(List<File> files) {
44          this.files = files;
45      }
46  
47      public long getFinish() {
48          return finish;
49      }
50  
51      public void setFinish(long finish) {
52          this.finish = finish;
53      }
54  
55      public long getRows() {
56          return rows;
57      }
58  
59      public void setRows(long rows) {
60          this.rows = rows;
61      }
62  
63      public long getSize() {
64          return size;
65      }
66  
67      public void setSize(long size) {
68          this.size = size;
69      }
70  
71      public long getStart() {
72          return start;
73      }
74  
75      public void setStart(long start) {
76          this.start = start;
77      }
78  
79      public DumpTableContext getTableContext() {
80          return tableContext;
81      }
82  
83      public void setTableContext(DumpTableContext tableContext) {
84          this.tableContext = tableContext;
85      }
86  }