EMMA Coverage Report (generated Wed Jun 22 19:47:49 EDT 2011)
[all classes][org.jclouds.vcloud.bluelock]

COVERAGE SUMMARY FOR SOURCE FILE [BluelockVCloudDirectorProviderMetadata.java]

nameclass, %method, %block, %line, %
BluelockVCloudDirectorProviderMetadata.java100% (1/1)100% (11/11)100% (28/28)100% (11/11)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class BluelockVCloudDirectorProviderMetadata100% (1/1)100% (11/11)100% (28/28)100% (11/11)
BluelockVCloudDirectorProviderMetadata (): void 100% (1/1)100% (3/3)100% (1/1)
getApiDocumentation (): URI 100% (1/1)100% (3/3)100% (1/1)
getConsole (): URI 100% (1/1)100% (3/3)100% (1/1)
getCredentialName (): String 100% (1/1)100% (2/2)100% (1/1)
getHomepage (): URI 100% (1/1)100% (3/3)100% (1/1)
getId (): String 100% (1/1)100% (2/2)100% (1/1)
getIdentityName (): String 100% (1/1)100% (2/2)100% (1/1)
getIso3166Codes (): Set 100% (1/1)100% (3/3)100% (1/1)
getLinkedServices (): Set 100% (1/1)100% (3/3)100% (1/1)
getName (): String 100% (1/1)100% (2/2)100% (1/1)
getType (): String 100% (1/1)100% (2/2)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.vcloud.bluelock;
20 
21import com.google.common.collect.ImmutableSet;
22 
23import java.net.URI;
24import java.util.Set;
25 
26import org.jclouds.providers.BaseProviderMetadata;
27import org.jclouds.providers.ProviderMetadata;
28 
29/**
30 * Implementation of {@link org.jclouds.types.ProviderMetadata} for Bluelock vCloud Enterprise.
31 * 
32 * @author Adrian Cole
33 */
34@Deprecated
35public class BluelockVCloudDirectorProviderMetadata extends BaseProviderMetadata {
36 
37   /**
38    * {@inheritDoc}
39    */
40   @Override
41   public String getId() {
42      return "bluelock-vcdirector";
43   }
44 
45   /**
46    * {@inheritDoc}
47    */
48   @Override
49   public String getType() {
50      return ProviderMetadata.COMPUTE_TYPE;
51   }
52 
53   /**
54    * {@inheritDoc}
55    */
56   @Override
57   public String getName() {
58      return "Bluelock vCloud Enterprise";
59   }
60 
61   /**
62    * {@inheritDoc}
63    */
64   @Override
65   public String getIdentityName() {
66      return "User at Organization (user@org)";
67   }
68 
69   /**
70    * {@inheritDoc}
71    */
72   @Override
73   public String getCredentialName() {
74      return "Password";
75   }
76 
77   /**
78    * {@inheritDoc}
79    */
80   @Override
81   public URI getHomepage() {
82      return URI.create("http://www.bluelock.com/bluelock-cloud-hosting");
83   }
84 
85   /**
86    * {@inheritDoc}
87    */
88   @Override
89   public URI getConsole() {
90      return URI.create("https://vcenterprise.bluelock.com/cloud/");
91   }
92 
93   /**
94    * {@inheritDoc}
95    */
96   @Override
97   public URI getApiDocumentation() {
98      return URI.create("http://www.vmware.com/support/pubs/vcd_pubs.html");
99   }
100 
101   /**
102    * {@inheritDoc}
103    */
104   @Override
105   public Set<String> getLinkedServices() {
106      return ImmutableSet.of("bluelock-vcdirector");
107   }
108 
109   /**
110    * {@inheritDoc}
111    */
112   @Override
113   public Set<String> getIso3166Codes() {
114      return ImmutableSet.of("US-IN");
115   }
116 
117}

[all classes][org.jclouds.vcloud.bluelock]
EMMA 2.0.5312 (C) Vladimir Roubtsov