| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| HttpRequestVO |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * This software is licensed under the Apache License, Version 2.0 | |
| 3 | * (the "License") agreement; you may not use this file except in compliance with | |
| 4 | * the License. You may obtain a copy of the License at | |
| 5 | * | |
| 6 | * http://www.apache.org/licenses/LICENSE-2.0 | |
| 7 | * | |
| 8 | * Unless required by applicable law or agreed to in writing, software | |
| 9 | * distributed under the License is distributed on an "AS IS" BASIS, | |
| 10 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 11 | * See the License for the specific language governing permissions and | |
| 12 | * limitations under the License. | |
| 13 | */ | |
| 14 | package net.admin4j.vo; | |
| 15 | ||
| 16 | import java.util.List; | |
| 17 | ||
| 18 | import net.admin4j.util.NameValuePair; | |
| 19 | ||
| 20 | /** | |
| 21 | * Summarizes a Http Request | |
| 22 | * @author D. Ashmore | |
| 23 | * @since 1.0.2 | |
| 24 | */ | |
| 25 | public class HttpRequestVO extends BaseVO { | |
| 26 | ||
| 27 | private static final long serialVersionUID = -6620168446486224800L; | |
| 28 | private String uri; | |
| 29 | private List<NameValuePair> requestParameters; | |
| 30 | ||
| 31 | 15 | public HttpRequestVO(String uri, List<NameValuePair> requestParameters) { |
| 32 | 15 | this.uri = uri; |
| 33 | 15 | this.requestParameters = requestParameters; |
| 34 | 15 | } |
| 35 | ||
| 36 | public String getUri() { | |
| 37 | 21 | return uri; |
| 38 | } | |
| 39 | ||
| 40 | public List<NameValuePair> getRequestParameters() { | |
| 41 | 24 | return requestParameters; |
| 42 | } | |
| 43 | } |