package org.onap.vid.changeManagement; import com.fasterxml.jackson.annotation.*; import java.util.HashMap; import java.util.Map; @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "source", "suppressRollback", "requestorId" }) public class RequestInfo { @JsonProperty("source") private String source; @JsonProperty("suppressRollback") private Boolean suppressRollback; @JsonProperty("requestorId") private String requestorId; @JsonIgnore private Map additionalProperties = new HashMap<>(); @JsonProperty("source") public String getSource() { return source; } @JsonProperty("source") public void setSource(String source) { this.source = source; } @JsonProperty("suppressRollback") public Boolean getSuppressRollback() { return suppressRollback; } @JsonProperty("suppressRollback") public void setSuppressRollback(Boolean suppressRollback) { this.suppressRollback = suppressRollback; } @JsonProperty("requestorId") public String getRequestorId() { return requestorId; } @JsonProperty("requestorId") public void setRequestorId(String requestorId) { this.requestorId = requestorId; } @JsonAnyGetter public Map getAdditionalProperties() { return this.additionalProperties; } @JsonAnySetter public void setAdditionalProperty(String name, Object value) { this.additionalProperties.put(name, value); } }