From 5015d4aa2a7ba17d5e7024bf9ef344e7b320b9ab Mon Sep 17 00:00:00 2001 From: kurczews Date: Mon, 13 Aug 2018 12:42:35 +0200 Subject: Renaming vid-automation #2 Change-Id: Ide2d71658369e0f0d953e1aa1752f48e9a4bbe96 Issue-ID: VID-205 Signed-off-by: kurczews --- .../presetGenerator/presets/model/Subscriber.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/model/Subscriber.java (limited to 'vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/model/Subscriber.java') diff --git a/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/model/Subscriber.java b/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/model/Subscriber.java new file mode 100644 index 000000000..27f3f9bba --- /dev/null +++ b/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/model/Subscriber.java @@ -0,0 +1,19 @@ +package org.onap.simulator.presetGenerator.presets.model; + + +import com.fasterxml.jackson.annotation.JsonProperty; + +public class Subscriber { + + @JsonProperty("global-customer-id") + public String globalCustomerId; + + @JsonProperty("subscriber-name") + public String subscriberName; + + @JsonProperty("subscriber-type") + public String subscriberType; + + @JsonProperty("resource-version") + public String resourceVersion; +} -- cgit 1.2.3-korg