[MSO-8] Update the maven dependency
[so.git] / adapters / mso-adapter-utils / src / test / java / org / openecomp / mso / cloud / servertype / NewServerTypeUtils.java
1 /**
2  * 
3  */
4 package org.openecomp.mso.cloud.servertype;
5
6 import java.util.Map;
7
8 import org.openecomp.mso.cloud.CloudIdentity;
9 import org.openecomp.mso.openstack.beans.MsoTenant;
10 import org.openecomp.mso.openstack.exceptions.MsoCloudSiteNotFound;
11 import org.openecomp.mso.openstack.exceptions.MsoException;
12 import org.openecomp.mso.openstack.utils.MsoTenantUtils;
13
14
15 public class NewServerTypeUtils extends MsoTenantUtils {
16
17         /**
18          * @param msoPropID
19          */
20         public NewServerTypeUtils(String msoPropID) {
21                 super(msoPropID);
22         }
23
24         @Override
25     public String createTenant(String tenantName, String cloudSiteId, Map<String, String> metadata, boolean backout)
26             throws MsoException {
27         // TODO Auto-generated method stub
28         return null;
29     }
30
31     @Override
32     public MsoTenant queryTenant(String tenantId, String cloudSiteId) throws MsoException, MsoCloudSiteNotFound {
33         // TODO Auto-generated method stub
34         return null;
35     }
36
37     @Override
38     public MsoTenant queryTenantByName(String tenantName, String cloudSiteId)
39             throws MsoException, MsoCloudSiteNotFound {
40         // TODO Auto-generated method stub
41         return null;
42     }
43
44     @Override
45     public boolean deleteTenant(String tenantId, String cloudSiteId) throws MsoException {
46         // TODO Auto-generated method stub
47         return false;
48     }
49
50     @Override
51     public String getKeystoneUrl(String regionId, String msoPropID, CloudIdentity cloudIdentity)
52             throws MsoException {
53         return msoPropID + ":" + regionId + ":NewServerTypeKeystoneURL/" + cloudIdentity.getIdentityUrl();
54     }
55
56 }