EMMA Coverage Report (generated Fri Aug 26 14:14:05 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 *
3 * Copyright (C) 2011 Cloud Conscious, LLC. <info@cloudconscious.com>
4 *
5 * ====================================================================
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * 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, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 * ====================================================================
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