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

COVERAGE SUMMARY FOR SOURCE FILE [NinefoldStorageProviderMetadata.java]

nameclass, %method, %block, %line, %
NinefoldStorageProviderMetadata.java100% (1/1)100% (10/10)100% (25/25)100% (10/10)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class NinefoldStorageProviderMetadata100% (1/1)100% (10/10)100% (25/25)100% (10/10)
NinefoldStorageProviderMetadata (): 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)
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.ninefold.storage;
20 
21import com.google.common.collect.ImmutableSet;
22 
23import java.net.URI;
24import java.util.Set;
25 
26import org.jclouds.providers.BaseProviderMetadata;
27 
28/**
29 * Implementation of {@link org.jclouds.types.ProviderMetadata} for Ninefold's
30 * Storage provider.
31 *
32 * @author Jeremy Whitlock <jwhitlock@apache.org>
33 */
34public class NinefoldStorageProviderMetadata extends BaseProviderMetadata {
35 
36   /**
37    * {@inheritDoc}
38    */
39   @Override
40   public String getId() {
41      return "ninefold-storage";
42   }
43 
44   /**
45    * {@inheritDoc}
46    */
47   @Override
48   public String getType() {
49      return BLOBSTORE_TYPE;
50   }
51 
52   /**
53    * {@inheritDoc}
54    */
55   @Override
56   public String getName() {
57      return "Ninefold Storage";
58   }
59 
60   /**
61    * {@inheritDoc}
62    */
63   @Override
64   public String getIdentityName() {
65      return "Subtenant ID (UID)";
66   }
67 
68   /**
69    * {@inheritDoc}
70    */
71   @Override
72   public String getCredentialName() {
73      return "Shared Secret";
74   }
75 
76   /**
77    * {@inheritDoc}
78    */
79   @Override
80   public URI getHomepage() {
81      return URI.create("http://ninefold.com/cloud-storage/");
82   }
83 
84   /**
85    * {@inheritDoc}
86    */
87   @Override
88   public URI getConsole() {
89      return URI.create("https://ninefold.com/portal/");
90   }
91 
92   /**
93    * {@inheritDoc}
94    */
95   @Override
96   public URI getApiDocumentation() {
97      return URI.create("https://ninefold.com/support/display/SPT/API+Documentation");
98   }
99 
100   /**
101    * {@inheritDoc}
102    */
103   @Override
104   public Set<String> getIso3166Codes() {
105      return ImmutableSet.of("AU-NSW");
106   }
107 
108}

[all classes][org.jclouds.ninefold.storage]
EMMA 2.0.5312 (C) Vladimir Roubtsov