From cc011d692419980a4ef80e0ccd52ee67f0f1c3b1 Mon Sep 17 00:00:00 2001 From: crusader Date: Tue, 8 May 2018 21:53:44 +0900 Subject: [PATCH] ing --- .../overflow/model/sensorconfig/Target.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/main/java/com/loafle/overflow/model/sensorconfig/Target.java b/src/main/java/com/loafle/overflow/model/sensorconfig/Target.java index 59cffed..658fd40 100644 --- a/src/main/java/com/loafle/overflow/model/sensorconfig/Target.java +++ b/src/main/java/com/loafle/overflow/model/sensorconfig/Target.java @@ -8,6 +8,7 @@ import java.util.Map; public class Target { private Map auth; private Connection connection; + private Map meta; public Map getAuth() { return auth; @@ -24,4 +25,18 @@ public class Target { public void setConnection(Connection connection) { this.connection = connection; } + + /** + * @return the meta + */ + public Map getMeta() { + return meta; + } + + /** + * @param meta the meta to set + */ + public void setMeta(Map meta) { + this.meta = meta; + } } \ No newline at end of file