X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=activiti-extension%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fworkflow%2Factivitiext%2Fcommon%2FRestInfo.java;h=16e28f1ebabcdac629e239c13fa6dad77c23f478;hb=b15b381c5fa631699c1a3d27e482d3d77bed6ad8;hp=18c376b633c55486a85accbd23ed8cc31ef67c83;hpb=83e300240cea9fb1fa7cf011c8fa8d4aeb0ebca6;p=vfc%2Fnfvo%2Fwfengine.git diff --git a/activiti-extension/src/main/java/org/onap/workflow/activitiext/common/RestInfo.java b/activiti-extension/src/main/java/org/onap/workflow/activitiext/common/RestInfo.java index 18c376b..16e28f1 100644 --- a/activiti-extension/src/main/java/org/onap/workflow/activitiext/common/RestInfo.java +++ b/activiti-extension/src/main/java/org/onap/workflow/activitiext/common/RestInfo.java @@ -15,16 +15,6 @@ */ package org.onap.workflow.activitiext.common; -import com.fasterxml.jackson.annotation.JsonIgnoreProperties; - -import lombok.AllArgsConstructor; -import lombok.Data; -import lombok.NoArgsConstructor; - -@Data -@NoArgsConstructor -@AllArgsConstructor -@JsonIgnoreProperties(ignoreUnknown = true) public class RestInfo { private String name; @@ -36,5 +26,59 @@ public class RestInfo { private String contentType; private String requestBody; private String realUri; + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + public String getVersion() { + return version; + } + public void setVersion(String version) { + this.version = version; + } + public String getUrl() { + return url; + } + public void setUrl(String url) { + this.url = url; + } + public String getPath() { + return path; + } + public void setPath(String path) { + this.path = path; + } + public String getMethod() { + return method; + } + public void setMethod(String method) { + this.method = method; + } + public String getAccept() { + return accept; + } + public void setAccept(String accept) { + this.accept = accept; + } + public String getContentType() { + return contentType; + } + public void setContentType(String contentType) { + this.contentType = contentType; + } + public String getRequestBody() { + return requestBody; + } + public void setRequestBody(String requestBody) { + this.requestBody = requestBody; + } + public String getRealUri() { + return realUri; + } + public void setRealUri(String realUri) { + this.realUri = realUri; + } }