EMMA Coverage Report (generated Mon Oct 17 05:41:20 EDT 2011)
[all classes][org.jclouds.slicehost.compute.config]

COVERAGE SUMMARY FOR SOURCE FILE [SlicehostBindComputeStrategiesByClass.java]

nameclass, %method, %block, %line, %
SlicehostBindComputeStrategiesByClass.java100% (1/1)100% (8/8)100% (17/17)100% (8/8)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class SlicehostBindComputeStrategiesByClass100% (1/1)100% (8/8)100% (17/17)100% (8/8)
SlicehostBindComputeStrategiesByClass (): void 100% (1/1)100% (3/3)100% (1/1)
defineAddNodeWithTagStrategy (): Class 100% (1/1)100% (2/2)100% (1/1)
defineDestroyNodeStrategy (): Class 100% (1/1)100% (2/2)100% (1/1)
defineGetNodeMetadataStrategy (): Class 100% (1/1)100% (2/2)100% (1/1)
defineListNodesStrategy (): Class 100% (1/1)100% (2/2)100% (1/1)
defineRebootNodeStrategy (): Class 100% (1/1)100% (2/2)100% (1/1)
defineStartNodeStrategy (): Class 100% (1/1)100% (2/2)100% (1/1)
defineStopNodeStrategy (): Class 100% (1/1)100% (2/2)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.slicehost.compute.config;
20 
21import org.jclouds.compute.config.BindComputeStrategiesByClass;
22import org.jclouds.compute.strategy.CreateNodeWithGroupEncodedIntoName;
23import org.jclouds.compute.strategy.DestroyNodeStrategy;
24import org.jclouds.compute.strategy.GetNodeMetadataStrategy;
25import org.jclouds.compute.strategy.ListNodesStrategy;
26import org.jclouds.compute.strategy.RebootNodeStrategy;
27import org.jclouds.compute.strategy.ResumeNodeStrategy;
28import org.jclouds.compute.strategy.SuspendNodeStrategy;
29import org.jclouds.slicehost.compute.strategy.SlicehostCreateNodeWithGroupEncodedIntoName;
30import org.jclouds.slicehost.compute.strategy.SlicehostDestroyNodeStrategy;
31import org.jclouds.slicehost.compute.strategy.SlicehostGetNodeMetadataStrategy;
32import org.jclouds.slicehost.compute.strategy.SlicehostListNodesStrategy;
33import org.jclouds.slicehost.compute.strategy.SlicehostLifeCycleStrategy;
34 
35/**
36 * 
37 * @author Adrian Cole
38 * 
39 */
40public class SlicehostBindComputeStrategiesByClass extends BindComputeStrategiesByClass {
41 
42   @Override
43   protected Class<? extends CreateNodeWithGroupEncodedIntoName> defineAddNodeWithTagStrategy() {
44      return SlicehostCreateNodeWithGroupEncodedIntoName.class;
45   }
46 
47   @Override
48   protected Class<? extends DestroyNodeStrategy> defineDestroyNodeStrategy() {
49      return SlicehostDestroyNodeStrategy.class;
50   }
51 
52   @Override
53   protected Class<? extends GetNodeMetadataStrategy> defineGetNodeMetadataStrategy() {
54      return SlicehostGetNodeMetadataStrategy.class;
55   }
56 
57   @Override
58   protected Class<? extends ListNodesStrategy> defineListNodesStrategy() {
59      return SlicehostListNodesStrategy.class;
60   }
61 
62   @Override
63   protected Class<? extends RebootNodeStrategy> defineRebootNodeStrategy() {
64      return SlicehostLifeCycleStrategy.class;
65   }
66 
67   @Override
68   protected Class<? extends ResumeNodeStrategy> defineStartNodeStrategy() {
69      return SlicehostLifeCycleStrategy.class;
70   }
71 
72   @Override
73   protected Class<? extends SuspendNodeStrategy> defineStopNodeStrategy() {
74      return SlicehostLifeCycleStrategy.class;
75   }
76}

[all classes][org.jclouds.slicehost.compute.config]
EMMA 2.0.5312 (C) Vladimir Roubtsov