blob: b5ea693fee0bd33d8377446ac07cd074738ff09e [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2021 the Eclipse BaSyx Authors
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
******************************************************************************/
package org.eclipse.basyx.submodel.factory.xml.converters.qualifier;
import java.util.Map;
import org.eclipse.basyx.submodel.factory.xml.converters.reference.ReferenceXMLConverter;
import org.eclipse.basyx.submodel.metamodel.api.qualifier.IHasSemantics;
import org.eclipse.basyx.submodel.metamodel.api.reference.IReference;
import org.eclipse.basyx.submodel.metamodel.map.qualifier.HasSemantics;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
/**
* Handles the conversion between an IHasSemantics object and the XML tag <aas:semanticId> in both directions
*
* @author conradi
*
*/
public class HasSemanticsXMLConverter {
public static final String SEMANTIC_ID = "aas:semanticId";
/**
* Populates a given HasSemantics object with the data form the given XML
*
* @param xmlObject the XML map containing the <aas:semanticId> tag
* @param hasSemantics the HasSemantics object to be populated
*/
@SuppressWarnings("unchecked")
public static void populateHasSemantics(Map<String, Object> xmlObject, HasSemantics hasSemantics) {
Map<String, Object> xmlSemanticIDObj = (Map<String, Object>) xmlObject.get(SEMANTIC_ID);
if (xmlSemanticIDObj != null) {
hasSemantics.setSemanticId(ReferenceXMLConverter.parseReference(xmlSemanticIDObj));
}
}
/**
* Populates a given XML map with the data form a given IHasSemantics object<br>
* Creates the &lt;aas:semanticId&gt; tag in the given root
*
* @param document the XML document
* @param root the XML root Element to be populated
* @param hasSemantics the IHasSemantics object to be converted to XML
*/
public static void populateHasSemanticsXML(Document document, Element root, IHasSemantics hasSemantics) {
IReference semanticId = hasSemantics.getSemanticId();
if(semanticId != null) {
Element semanticIdRoot = document.createElement(SEMANTIC_ID);
semanticIdRoot.appendChild(ReferenceXMLConverter.buildReferenceXML(document, semanticId));
root.appendChild(semanticIdRoot);
}
}
}