0c35da7f64f27527e775920b4175602dc8e906d1
[so.git] / adapters / mso-vnf-adapter / src / test / java / org / openecomp / mso / adapters / vnf / test / VnfDeleteTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.mso.adapters.vnf.test;
22
23
24
25 import org.openecomp.mso.adapters.vnf.MsoVnfAdapter;
26 import org.openecomp.mso.adapters.vnf.MsoVnfAdapterImpl;
27 import org.openecomp.mso.adapters.vnf.exceptions.VnfException;
28
29 public class VnfDeleteTest {
30         public final static void main (String args[])
31         {
32                 MsoVnfAdapter vnfAdapter = new MsoVnfAdapterImpl();
33                 log ("Got a VnfAdapter");
34                 
35                 // Web Service Inputs
36                 String cloudId = "MT";
37                 String tenantName = "MSO_Test";
38                 String vnfName = "AdapterTest";
39
40                 try {
41                         vnfAdapter.deleteVnf(cloudId, tenantName, vnfName, null);
42                 } catch (VnfException e) {
43                         log ("Got an Exception: " + e);
44                 }
45                 
46                 log ("Deleted VNF");
47         }
48         
49         private static void log (String msg) {
50                 System.out.println (msg);
51         }
52 }