26482a1dc395850799614f85680bd299a6d9e892
[appc.git] / appc-dispatcher / appc-license-manager / appc-license-manager-core / src / test / java / org / openecomp / appc / licmgr / TestVfLicenseModelConvert.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.licmgr;
23
24 /*
25 import org.openecomp.appc.licmgr.objects.VfLicenseModel;
26
27 import javax.xml.bind.JAXBContext;
28 import javax.xml.bind.Unmarshaller;
29 import java.io.InputStream;
30 import java.nio.file.Files;
31 import java.nio.file.Path;
32 import java.nio.file.Paths;
33
34 */
35
36 public class TestVfLicenseModelConvert {
37 /*
38     public static void main(String args[]) {
39
40         try {
41
42             //create JAXB context
43             JAXBContext context = JAXBContext.newInstance(VfLicenseModel.class);
44
45             //Create Unmarshaller using JAXB context
46             Unmarshaller unmarshaller = context.createUnmarshaller();
47
48             Path xmlPath = Paths.get("src/test/resources/xml/vf-license-model.xml");
49             InputStream xmlInputStream = Files.newInputStream(xmlPath);
50
51             VfLicenseModel licenseModel = (VfLicenseModel) unmarshaller.unmarshal(xmlInputStream);
52
53             String vnfId = licenseModel.getVnfId();
54             String vendorName = licenseModel.getVendorName();
55
56         } catch (Exception e) {
57             e.printStackTrace();
58         }
59     }
60 */
61 }