We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 839389c + 8a3a6f7 commit cce321bCopy full SHA for cce321b
src/main/java/org/audit4j/core/layout/CustomizableLayout.java
@@ -50,7 +50,13 @@ public class CustomizableLayout implements Layout {
50
/** The date format. */
51
private String dateFormat = CoreConstants.DEFAULT_DATE_FORMAT;
52
53
- /** The template. */
+ //this getter is useful for yml file configuration
54
+ public String getDateFormat() {
55
+ return dateFormat;
56
+ }
57
+
58
59
+ /** The template. */
60
private String template = DEFAULT_TEMPLATE;
61
62
/**
@@ -114,7 +120,7 @@ public void setTemplate(String template) {
114
120
}
115
121
116
122
117
- //this getter is usefull for file configuration
123
118
124
public String getTemplate() {
119
125
return template;
126
0 commit comments