Add unit test for vfc-nfvo-wfengine
[vfc/nfvo/wfengine.git] / activiti-extension / src / main / java / org / onap / workflow / activitiext / common / RestInfo.java
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.onap.workflow.activitiext.restservicetask;
+package org.onap.workflow.activitiext.common;
 
-import java.util.Map;
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 
 import lombok.AllArgsConstructor;
 import lombok.Data;
 import lombok.NoArgsConstructor;
 
-import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
-
 @Data
 @NoArgsConstructor
 @AllArgsConstructor
 @JsonIgnoreProperties(ignoreUnknown = true)
-public class StartProcessRequest {
-  private String processId;
-  private Map<String, String> params;
+public class RestInfo {
+       
+       private String name;
+       private String version;
+       private String url;
+       private String path;
+       private String method;
+       private String accept;
+       private String contentType;
+       private String requestBody;
+       private String realUri;
+
 }