EMMA Coverage Report (generated Tue Jun 21 05:51:52 EDT 2011)
[all classes][org.jclouds.cloudservers.options]

COVERAGE SUMMARY FOR SOURCE FILE [RebuildServerOptions.java]

nameclass, %method, %block, %line, %
RebuildServerOptions.java100% (2/2)67%  (4/6)82%  (41/50)87%  (10.4/12)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class RebuildServerOptions$Builder100% (1/1)50%  (1/2)73%  (8/11)67%  (2/3)
RebuildServerOptions$Builder (): void 0%   (0/1)0%   (0/3)0%   (0/1)
withImage (int): RebuildServerOptions 100% (1/1)100% (8/8)100% (2/2)
     
class RebuildServerOptions100% (1/1)75%  (3/4)85%  (33/39)89%  (8.9/10)
bindToRequest (HttpRequest, Object): HttpRequest 0%   (0/1)0%   (0/5)0%   (0/1)
withImage (int): RebuildServerOptions 100% (1/1)92%  (12/13)97%  (2.9/3)
RebuildServerOptions (): void 100% (1/1)100% (3/3)100% (2/2)
bindToRequest (HttpRequest, Map): HttpRequest 100% (1/1)100% (18/18)100% (4/4)

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.cloudservers.options;
20 
21import static com.google.common.base.Preconditions.checkArgument;
22 
23import java.util.Map;
24 
25import org.jclouds.http.HttpRequest;
26import org.jclouds.rest.binders.BindToJsonPayload;
27 
28import com.google.common.collect.ImmutableMap;
29import com.google.common.collect.Maps;
30 
31/**
32 * 
33 * 
34 * @author Adrian Cole
35 * 
36 */
37public class RebuildServerOptions extends BindToJsonPayload {
38   Integer imageId;
39 
40   @Override
41   public <R extends HttpRequest> R bindToRequest(R request, Map<String, String> postParams) {
42      Map<String, Integer> image = Maps.newHashMap();
43      if (imageId != null)
44         image.put("imageId", imageId);
45      return super.bindToRequest(request, ImmutableMap.of("rebuild", image));
46   }
47 
48   @Override
49   public <R extends HttpRequest> R bindToRequest(R request, Object toBind) {
50      throw new IllegalStateException("RebuildServer is a POST operation");
51   }
52 
53   /**
54    * 
55    * @param id
56    *           of the image to rebuild the server with.
57    */
58   public RebuildServerOptions withImage(int id) {
59      checkArgument(id > 0, "server id must be a positive number");
60      this.imageId = id;
61      return this;
62   }
63 
64   public static class Builder {
65 
66      /**
67       * @see RebuildServerOptions#withImage(int)
68       */
69      public static RebuildServerOptions withImage(int id) {
70         RebuildServerOptions options = new RebuildServerOptions();
71         return options.withImage(id);
72      }
73   }
74}

[all classes][org.jclouds.cloudservers.options]
EMMA 2.0.5312 (C) Vladimir Roubtsov