blob: a33e08d345434b4fe31252d56b97307d1ff4629c [file] [log] [blame]
package org.eclipse.basyx.examples.snippets.submodel;
import org.eclipse.basyx.examples.snippets.aas.RetrieveSubmodelFromAAS;
import org.eclipse.basyx.submodel.metamodel.api.ISubModel;
import org.eclipse.basyx.submodel.metamodel.api.identifier.IIdentifier;
import org.eclipse.basyx.submodel.metamodel.map.submodelelement.SubmodelElement;
/**
* This snippet showcases how add to a SubmodelElement to a Submodel,
* that already exists on a server
*
* @author conradi
*
*/
public class AddSubmodelElement {
/**
* Adds a SubmodelElement to a remote Submodel
*
* @param smElement the SubmodelElement to be added
* @param smIdentifier the Identifier of the Submodel the element should be added to
* @param aasIdentifier the Identifier of the AAS the Submodel belongs to
* @param registryServerURL the URL of the registry server
*/
public static void addSubmodelElement(SubmodelElement smElement, IIdentifier smIdentifier, IIdentifier aasIdentifier, String registryServerURL) {
// Get the ConnectedSubmodel
ISubModel submodel = RetrieveSubmodelFromAAS.retrieveSubmodelFromAAS(smIdentifier, aasIdentifier, registryServerURL);
// Add the element to it
submodel.addSubModelElement(smElement);
}
}