blob: 228a3bfe90ba074764a4b253cd462030497ead45 [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.manager;
import org.eclipse.basyx.aas.manager.ConnectedAssetAdministrationShellManager;
import org.eclipse.basyx.aas.registration.proxy.AASRegistryProxy;
import org.eclipse.basyx.submodel.metamodel.api.identifier.IIdentifier;
/**
* Snippet that showcases how to delete an AAS from a server using the AASManager
*
* @author conradi
*
*/
public class DeleteAAS {
/**
* Removes an AAS from the server
*
* @param aasIdentifier the Identifier of the AAS to be deleted
* @param registryServerURL the URL of the registry server (e.g. http://localhost:8080/registry)
*/
public static void deleteAAS(IIdentifier aasIdentifier, String registryServerURL) {
// Create a proxy pointing to the registry server
AASRegistryProxy registryProxy = new AASRegistryProxy(registryServerURL);
// Create a ConnectedAASManager using the registryProxy as its registry
ConnectedAssetAdministrationShellManager manager =
new ConnectedAssetAdministrationShellManager(registryProxy);
// Delete the AAS
// Automatically deregisters it
manager.deleteAAS(aasIdentifier);
}
}