Add unit test for vfc-nfvo-wfengine
[vfc/nfvo/wfengine.git] / activiti-extension / src / main / java / org / onap / workflow / activitiext / common / RestInfo.java
index 18c376b..16e28f1 100644 (file)
  */
 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;
+       }
 
 }