summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorInstrumental <jonathan.gathman@att.com>2018-11-12 14:07:24 -0600
committerInstrumental <jonathan.gathman@att.com>2018-11-12 14:09:24 -0600
commit06e6a9e68e9286f456b12c03b09b87f16f01ffea (patch)
tree01c9bcde7529dac0fd78fae9aa5a3ae86bb00f78
parentfa61e479d8b5180c46a2bff5eaa1159c610bff60 (diff)
Add Init Msg
Issue-ID: AAF-618 Change-Id: Ia2f66ab3310cd3bee2cc0bc4454bd0a71762db38 Signed-off-by: Instrumental <jonathan.gathman@att.com>
-rw-r--r--cadi/core/src/main/java/org/onap/aaf/cadi/filter/MapBathConverter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/cadi/core/src/main/java/org/onap/aaf/cadi/filter/MapBathConverter.java b/cadi/core/src/main/java/org/onap/aaf/cadi/filter/MapBathConverter.java
index ce101e24..36372eb3 100644
--- a/cadi/core/src/main/java/org/onap/aaf/cadi/filter/MapBathConverter.java
+++ b/cadi/core/src/main/java/org/onap/aaf/cadi/filter/MapBathConverter.java
@@ -81,7 +81,7 @@ public class MapBathConverter {
@Override
public void visit(List<String> row) throws CadiException {
if(row.size()<3) {
- throw new CadiException("CSV file " + csv + " must have at least 2 Basic Auth columns and an Expiration Date(YYYYMMDD) in each row");
+ throw new CadiException("CSV file " + csv + " must have at least 2 Basic Auth columns and an Expiration Date(YYYY-MM-DD) in each row");
}
try {
Date date = sdf.parse(row.get(2));