EMMA Coverage Report (generated Mon Oct 17 05:41:20 EDT 2011)
[all classes][org.jclouds.rimuhosting.miro.domain.internal]

COVERAGE SUMMARY FOR SOURCE FILE [RimuHostingResponse.java]

nameclass, %method, %block, %line, %
RimuHostingResponse.java100% (1/1)14%  (1/7)12%  (3/24)10%  (1/10)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class RimuHostingResponse100% (1/1)14%  (1/7)12%  (3/24)10%  (1/10)
getErrorInfo (): RimuHostingError 0%   (0/1)0%   (0/3)0%   (0/1)
getStatusCode (): Integer 0%   (0/1)0%   (0/3)0%   (0/1)
getStatusMessage (): String 0%   (0/1)0%   (0/3)0%   (0/1)
setErrorInfo (RimuHostingError): void 0%   (0/1)0%   (0/4)0%   (0/2)
setStatusCode (Integer): void 0%   (0/1)0%   (0/4)0%   (0/2)
setStatusMessage (String): void 0%   (0/1)0%   (0/4)0%   (0/2)
RimuHostingResponse (): void 100% (1/1)100% (3/3)100% (1/1)

1/**
2 * Licensed to jclouds, Inc. (jclouds) under one or more
3 * contributor license agreements.  See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership.  jclouds licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License.  You may obtain a copy of the License at
9 *
10 *   http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied.  See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19package org.jclouds.rimuhosting.miro.domain.internal;
20 
21/**
22 * Object that the payload on requests is wrapped in.
23 *
24 * @author Ivan Meredith
25 */
26public class RimuHostingResponse {
27   private String status_message;
28   private Integer status_code;
29   private RimuHostingError error_info;
30   public String getStatusMessage() {
31      return status_message;
32   }
33 
34   public void setStatusMessage(String status_message) {
35      this.status_message = status_message;
36   }
37 
38   public Integer getStatusCode() {
39      return status_code;
40   }
41 
42   public void setStatusCode(Integer status_code) {
43      this.status_code = status_code;
44   }
45 
46 
47   public RimuHostingError getErrorInfo() {
48      return error_info;
49   }
50 
51   public void setErrorInfo(RimuHostingError error_info) {
52      this.error_info = error_info;
53   }
54}

[all classes][org.jclouds.rimuhosting.miro.domain.internal]
EMMA 2.0.5312 (C) Vladimir Roubtsov