aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/nbi/apis/hub/model/ServiceInstanceEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/nbi/apis/hub/model/ServiceInstanceEvent.java')
-rw-r--r--src/main/java/org/onap/nbi/apis/hub/model/ServiceInstanceEvent.java98
1 files changed, 49 insertions, 49 deletions
diff --git a/src/main/java/org/onap/nbi/apis/hub/model/ServiceInstanceEvent.java b/src/main/java/org/onap/nbi/apis/hub/model/ServiceInstanceEvent.java
index 4bbafdc..cb3c275 100644
--- a/src/main/java/org/onap/nbi/apis/hub/model/ServiceInstanceEvent.java
+++ b/src/main/java/org/onap/nbi/apis/hub/model/ServiceInstanceEvent.java
@@ -20,71 +20,71 @@ import com.fasterxml.jackson.annotation.JsonProperty;
public class ServiceInstanceEvent {
- @Id
- @JsonProperty("id")
- private String id = null;
+ @Id
+ @JsonProperty("id")
+ private String id = null;
- @JsonProperty("href")
- private String href = null;
+ @JsonProperty("href")
+ private String href = null;
- @JsonProperty("name")
- private String name = null;
+ @JsonProperty("name")
+ private String name = null;
- @JsonProperty("type")
- private String type = "service-instance";
+ @JsonProperty("type")
+ private String type = "service-instance";
- @JsonProperty("state")
- private String state = null;
+ @JsonProperty("state")
+ private String state = null;
- @JsonProperty("relatedParty")
- private RelatedParty relatedParty = null;
+ @JsonProperty("relatedParty")
+ private RelatedParty relatedParty = null;
- public String getId() {
- return id;
- }
+ public String getId() {
+ return id;
+ }
- public void setId(String id) {
- this.id = id;
- }
+ public void setId(String id) {
+ this.id = id;
+ }
- public String getHref() {
- return href;
- }
+ public String getHref() {
+ return href;
+ }
- public void setHref(String href) {
- this.href = href;
- }
+ public void setHref(String href) {
+ this.href = href;
+ }
- public String getName() {
- return name;
- }
+ public String getName() {
+ return name;
+ }
- public void setName(String name) {
- this.name = name;
- }
+ public void setName(String name) {
+ this.name = name;
+ }
- public String getType() {
- return type;
- }
+ public String getType() {
+ return type;
+ }
- public void setType(String type) {
- this.type = type;
- }
+ public void setType(String type) {
+ this.type = type;
+ }
- public String getState() {
- return state;
- }
+ public String getState() {
+ return state;
+ }
- public void setState(String state) {
- this.state = state;
- }
+ public void setState(String state) {
+ this.state = state;
+ }
- public RelatedParty getRelatedParty() {
- return relatedParty;
- }
+ public RelatedParty getRelatedParty() {
+ return relatedParty;
+ }
- public void setRelatedParty(RelatedParty relatedParty) {
- this.relatedParty = relatedParty;
- }
+ public void setRelatedParty(RelatedParty relatedParty) {
+ this.relatedParty = relatedParty;
+ }
}