blob: b711f60c5a66e61a2bd33d53717591ce5bba5b90 [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.metamodel.connected.submodelelement.relationship;
import java.util.Map;
import org.eclipse.basyx.submodel.metamodel.api.reference.enums.KeyElements;
import org.eclipse.basyx.submodel.metamodel.api.submodelelement.relationship.IRelationshipElement;
import org.eclipse.basyx.submodel.metamodel.connected.submodelelement.ConnectedSubmodelElement;
import org.eclipse.basyx.submodel.metamodel.map.submodelelement.dataelement.property.Property;
import org.eclipse.basyx.submodel.metamodel.map.submodelelement.relationship.RelationshipElement;
import org.eclipse.basyx.submodel.metamodel.map.submodelelement.relationship.RelationshipElementValue;
import org.eclipse.basyx.vab.modelprovider.VABElementProxy;
/**
* "Connected" implementation of RelationshipElement
*
* @author rajashek
*
*/
public class ConnectedRelationshipElement extends ConnectedSubmodelElement implements IRelationshipElement {
public ConnectedRelationshipElement(VABElementProxy proxy) {
super(proxy);
}
@Override
protected KeyElements getKeyElement() {
return KeyElements.RELATIONSHIPELEMENT;
}
@SuppressWarnings("unchecked")
@Override
public RelationshipElementValue getValue() {
Object obj = getProxy().getModelPropertyValue(Property.VALUE);
return RelationshipElementValue.createAsFacade((Map<String, Object>) obj);
}
@Override
public RelationshipElement getLocalCopy() {
return RelationshipElement.createAsFacade(getElem()).getLocalCopy();
}
@Override
public void setValue(RelationshipElementValue value) {
setValue((Object) value);
}
}