summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/aai/model/AaiGetServicesRequestModel/Service.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/main/java/org/openecomp/vid/aai/model/AaiGetServicesRequestModel/Service.java')
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/aai/model/AaiGetServicesRequestModel/Service.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/vid-app-common/src/main/java/org/openecomp/vid/aai/model/AaiGetServicesRequestModel/Service.java b/vid-app-common/src/main/java/org/openecomp/vid/aai/model/AaiGetServicesRequestModel/Service.java
deleted file mode 100644
index 977e57e6..00000000
--- a/vid-app-common/src/main/java/org/openecomp/vid/aai/model/AaiGetServicesRequestModel/Service.java
+++ /dev/null
@@ -1,21 +0,0 @@
-package org.openecomp.vid.aai.model.AaiGetServicesRequestModel;
-
-import org.codehaus.jackson.annotate.JsonIgnoreProperties;
-import org.codehaus.jackson.annotate.JsonProperty;
-
-/**
- * Created by Oren on 7/17/17.
- */
-
-@JsonIgnoreProperties(ignoreUnknown = true)
-public class Service {
- @JsonProperty("service-id")
- public String serviceId;
- @JsonProperty("service-description")
- public String serviceDescription;
- @JsonProperty("resource-version")
- public String resourceVersion;
- @JsonProperty("is-permitted")
- public boolean isPermitted;
-
-}