Add unit test for vfc-nfvo-wfengine
[vfc/nfvo/wfengine.git] / activiti-extension / src / main / java / org / onap / workflow / activitiext / common / RestInfo.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.workflow.activitiext.common;
17
18 public class RestInfo {
19         
20         private String name;
21         private String version;
22         private String url;
23         private String path;
24         private String method;
25         private String accept;
26         private String contentType;
27         private String requestBody;
28         private String realUri;
29         public String getName() {
30                 return name;
31         }
32         public void setName(String name) {
33                 this.name = name;
34         }
35         public String getVersion() {
36                 return version;
37         }
38         public void setVersion(String version) {
39                 this.version = version;
40         }
41         public String getUrl() {
42                 return url;
43         }
44         public void setUrl(String url) {
45                 this.url = url;
46         }
47         public String getPath() {
48                 return path;
49         }
50         public void setPath(String path) {
51                 this.path = path;
52         }
53         public String getMethod() {
54                 return method;
55         }
56         public void setMethod(String method) {
57                 this.method = method;
58         }
59         public String getAccept() {
60                 return accept;
61         }
62         public void setAccept(String accept) {
63                 this.accept = accept;
64         }
65         public String getContentType() {
66                 return contentType;
67         }
68         public void setContentType(String contentType) {
69                 this.contentType = contentType;
70         }
71         public String getRequestBody() {
72                 return requestBody;
73         }
74         public void setRequestBody(String requestBody) {
75                 this.requestBody = requestBody;
76         }
77         public String getRealUri() {
78                 return realUri;
79         }
80         public void setRealUri(String realUri) {
81                 this.realUri = realUri;
82         }
83
84 }