[SDC] Onboarding 1710 rebase.
[sdc.git] / common / openecomp-tosca-datatype / src / main / java / org / openecomp / sdc / tosca / services / ToscaExtensionYamlUtil.java
@@ -1,26 +1,5 @@
-/*-
- * ============LICENSE_START=======================================================
- * SDC
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
+package org.openecomp.sdc.tosca.services;
 
-package org.openecomp.sdc.tosca.services.yamlutil;
-
-import org.openecomp.core.utilities.yaml.YamlUtil;
 import org.yaml.snakeyaml.constructor.Constructor;
 import org.yaml.snakeyaml.introspector.Property;
 import org.yaml.snakeyaml.introspector.PropertyUtils;
@@ -29,6 +8,7 @@ import org.yaml.snakeyaml.nodes.NodeId;
 
 import java.beans.IntrospectionException;
 
+
 public class ToscaExtensionYamlUtil extends YamlUtil {
 
   @Override
@@ -64,7 +44,7 @@ public class ToscaExtensionYamlUtil extends YamlUtil {
       yamlClassConstructors.put(NodeId.mapping, new MyPersistentObjectConstruct());
     }
 
-    class MyPersistentObjectConstruct extends ConstructMapping {
+    class MyPersistentObjectConstruct extends Constructor.ConstructMapping {
       @Override
       protected Object constructJavaBean2ndStep(MappingNode node, Object object) {
         Class type = node.getType();
@@ -87,6 +67,3 @@ public class ToscaExtensionYamlUtil extends YamlUtil {
     }
   }
 }
-
-
-