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

COVERAGE SUMMARY FOR SOURCE FILE [ServerManagerImageToImage.java]

nameclass, %method, %block, %line, %
ServerManagerImageToImage.java100% (1/1)50%  (1/2)9%   (6/65)15%  (2/13)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ServerManagerImageToImage100% (1/1)50%  (1/2)9%   (6/65)15%  (2/13)
apply (Image): Image 0%   (0/1)0%   (0/59)0%   (0/11)
ServerManagerImageToImage (): void 100% (1/1)100% (6/6)100% (2/2)

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.servermanager.compute.functions;
20 
21import javax.annotation.Resource;
22import javax.inject.Named;
23import javax.inject.Singleton;
24 
25import org.jclouds.compute.domain.Image;
26import org.jclouds.compute.domain.ImageBuilder;
27import org.jclouds.compute.domain.OperatingSystem;
28import org.jclouds.compute.domain.OsFamily;
29import org.jclouds.compute.reference.ComputeServiceConstants;
30import org.jclouds.logging.Logger;
31 
32import com.google.common.base.Function;
33 
34/**
35 * @author Adrian Cole
36 */
37@Singleton
38public class ServerManagerImageToImage implements Function<org.jclouds.servermanager.Image, Image> {
39   @Resource
40   @Named(ComputeServiceConstants.COMPUTE_LOGGER)
41   protected Logger logger = Logger.NULL;
42 
43   @Override
44   public Image apply(org.jclouds.servermanager.Image from) {
45 
46      ImageBuilder builder = new ImageBuilder();
47      builder.ids(from.id + "");
48      builder.name(from.name);
49      builder.description(from.name);
50 
51      OsFamily family = null;
52      try {
53         family = OsFamily.fromValue(from.name);
54         builder.operatingSystem(new OperatingSystem.Builder().name(from.name).family(family).build());
55      } catch (IllegalArgumentException e) {
56         logger.debug("<< didn't match os(%s)", from);
57      }
58      return builder.build();
59   }
60 
61}

[all classes][org.jclouds.servermanager.compute.functions]
EMMA 2.0.5312 (C) Vladimir Roubtsov