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

COVERAGE SUMMARY FOR SOURCE FILE [SavvisSymphonyVPDCProviderMetadata.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class SavvisSymphonyVPDCProviderMetadata100% (1/1)100% (10/10)100% (25/25)100% (10/10)
SavvisSymphonyVPDCProviderMetadata (): 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 * 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.savvis.vpdc;
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 Savvis Symphony VPDC services.
31 * 
32 * @author Kedar Dave
33 */
34public class SavvisSymphonyVPDCProviderMetadata extends BaseProviderMetadata {
35 
36   /**
37    * {@inheritDoc}
38    */
39   @Override
40   public String getId() {
41      return "savvis-symphonyvpdc";
42   }
43 
44   /**
45    * {@inheritDoc}
46    */
47   @Override
48   public String getType() {
49      return ProviderMetadata.COMPUTE_TYPE;
50   }
51 
52   /**
53    * {@inheritDoc}
54    */
55   @Override
56   public String getName() {
57      return "Savvis Symphony VPDC";
58   }
59 
60   /**
61    * {@inheritDoc}
62    */
63   @Override
64   public String getIdentityName() {
65      return "username";
66   }
67 
68   /**
69    * {@inheritDoc}
70    */
71   @Override
72   public String getCredentialName() {
73      return "password";
74   }
75 
76   /**
77    * {@inheritDoc}
78    */
79   @Override
80   public URI getHomepage() {
81      return URI.create("http://www.savvis.com/en-US/infrastructure-services/Cloud/Pages/SavvisSymphonyVPDC.aspx");
82   }
83 
84   /**
85    * {@inheritDoc}
86    */
87   @Override
88   public URI getConsole() {
89      return URI.create("https://www.savvisstation.com");
90   }
91 
92   /**
93    * {@inheritDoc}
94    */
95   @Override
96   public URI getApiDocumentation() {
97      return URI.create("https://api.symphonyvpdc.savvis.net/doc/spec/api/index.html");
98   }
99 
100   /**
101    * {@inheritDoc}
102    * list of data centers from savvisstation colocation guide 
103    * https://www.savvisstation.com/DocumentViewer?GUID=a95f0387-cbfe-43eb-b25b-4f2b0f68498f&sessionid=SavvisCCC%3ac9a8984b9655b01916be587e5204b2cf
104    * Once we have confirmation from Savvis as to what data centers are used for vpdc deployments,
105    * iso codes for those will be entered here
106    * 
107    * City                                                                Code
108    *         Lithia Springs, GA                                 AT1
109        *        Waltham, MA                                         BO1
110        *        Waltham, MA                                         BO2
111        *        Waltham, MA                                         B03
112        *        Elk Grove Village, IL                         CH3
113        *        Chicago, IL                                         CH4 
114        *        Sterling, VA                                         DC2
115        *        Sterling, VA                                         DC3
116        *        Sterling, VA                                         DC4 Phase I 
117        *   Sterling, VA                                         DC4 Phase II
118        *        Fort Worth, TX                                        DL1 
119        *        Fort Worth, TX                                         DL2 
120        *        El Segundo, CA                                         LA1 
121        *        Jersey City, NJ                                 NJ1
122        *        Weehawken, NJ                                         NJ2
123        *        Piscataway, NJ                                         NJ3
124        *        Piscataway, NJ 2nd floor                 NJ3
125        *        Weehawken, NJ                                         NJ2X
126        *        Irvine, CA                                                 OC2
127        *        Santa Clara, CA                                 SC4
128        *        Santa Clara, CA                                 SC5
129        *        Santa Clara, CA                                 SC8
130        *        Santa Clara, CA                                 SC9
131        *        Tukwila, WA 1st floor                         SE2
132        *        Montreal, Canada                                 MR1
133        *        Toronto, Canada                                 TR1
134        *        Vancouver, Canada                                 VC1
135    */
136   @Override
137   public Set<String> getIso3166Codes() {
138      return ImmutableSet.of("");
139   }
140 
141}

[all classes][org.jclouds.savvis.vpdc]
EMMA 2.0.5312 (C) Vladimir Roubtsov