blob: f26d853a27944937746d32283a242efe87ebe357 [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.examples.snippets.registry;
import org.eclipse.basyx.aas.registration.proxy.AASRegistryProxy;
import org.eclipse.basyx.submodel.metamodel.api.identifier.IIdentifier;
/**
* Snippet that showcases how to deregister a AAS from a RegistryComponent
*
* @author conradi
*
*/
public class DeregisterAAS {
/**
* Deregisters a given AssetAdministrationShell from a registry.
*
* @param smIdentifier the Identifier of the AAS to be deregistered
* @param registryServerURL the address of the registry
*/
public static void registerAAS(IIdentifier aasIdentifier, String registryServerURL) {
// Create a proxy pointing to the registry
AASRegistryProxy registryProxy = new AASRegistryProxy(registryServerURL);
// Delete the AAS from the registry
registryProxy.delete(aasIdentifier);
}
}