1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.util.log;
17
18 import java.util.List;
19
20 import org.kuali.common.util.Assert;
21 import org.kuali.common.util.ListUtils;
22 import org.kuali.common.util.nullify.NullUtils;
23 import org.slf4j.Logger;
24
25 public class LogTableContext {
26
27 public static final LoggerLevel DEFAULT_LOGGER_LEVEL = LoggerLevel.INFO;
28 public static final boolean DEFAULT_LEFT_ALIGN = false;
29 public static final Logger DEFAULT_LOGGER = LoggerUtils.LOGGER_UTILS_LOGGER;
30 public static final String NO_TITLE = NullUtils.NONE;
31 public static final String DEFAULT_TITLE = NO_TITLE;
32
33 private final String title;
34 private final List<String> columns;
35 private final List<Object[]> rows;
36 private final Logger logger;
37 private final LoggerLevel level;
38 private final boolean leftAlign;
39
40 public LogTableContext(List<String> columns, List<Object[]> rows) {
41 this(columns, rows, DEFAULT_LOGGER);
42 }
43
44 public LogTableContext(String title, List<String> columns, List<Object[]> rows) {
45 this(title, columns, rows, DEFAULT_LOGGER_LEVEL, DEFAULT_LOGGER, DEFAULT_LEFT_ALIGN);
46 }
47
48 public LogTableContext(List<String> columns, List<Object[]> rows, Logger logger) {
49 this(DEFAULT_TITLE, columns, rows, logger);
50 }
51
52 public LogTableContext(String title, List<String> columns, List<Object[]> rows, Logger logger) {
53 this(title, columns, rows, DEFAULT_LOGGER_LEVEL, logger, DEFAULT_LEFT_ALIGN);
54
55 }
56
57 public LogTableContext(List<String> columns, List<Object[]> rows, LoggerLevel level, Logger logger, boolean leftAlign) {
58 this(DEFAULT_TITLE, columns, rows, level, logger, leftAlign);
59 }
60
61 public LogTableContext(String title, List<String> columns, List<Object[]> rows, LoggerLevel level, Logger logger, boolean leftAlign) {
62 Assert.noNulls(columns, rows, logger, level);
63 Assert.noBlanks(title);
64 this.title = title;
65 this.columns = ListUtils.newImmutableArrayList(columns);
66 this.rows = ListUtils.newImmutableArrayList(rows);
67 this.level = level;
68 this.logger = logger;
69 this.leftAlign = leftAlign;
70 }
71
72 public String getTitle() {
73 return title;
74 }
75
76 public List<String> getColumns() {
77 return columns;
78 }
79
80 public List<Object[]> getRows() {
81 return rows;
82 }
83
84 public Logger getLogger() {
85 return logger;
86 }
87
88 public LoggerLevel getLevel() {
89 return level;
90 }
91
92 public boolean isLeftAlign() {
93 return leftAlign;
94 }
95
96 }