blob: a9af5ed27e21d04bf28911b7bff1cd26d811c74d [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.aas.metamodel.api.parts.asset;
import org.eclipse.basyx.submodel.metamodel.api.qualifier.IHasDataSpecification;
import org.eclipse.basyx.submodel.metamodel.api.qualifier.IIdentifiable;
import org.eclipse.basyx.submodel.metamodel.api.reference.IReference;
/**
* An Asset describes meta data of an asset that is represented by an AAS. The
* asset may either represent an asset type or an asset instance. The asset has
* a globally unique identifier plus – if needed – additional domain specific
* (proprietary) identifiers.
*
* @author rajashek, schnicke
*
*/
public interface IAsset extends IHasDataSpecification, IIdentifiable {
/**
* Gets the asset kind
*
* @return
*/
AssetKind getAssetKind();
/**
* Gets the reference to a Submodel that defines the handling of additional
* domain specific (proprietary) Identifiers for the asset like e.g. serial
* number etc.
*
* @return
*/
IReference getAssetIdentificationModel();
/**
* Gets bill of material of the asset represented by a submodel of the same AAS.
* This submodel contains a set of entities describing the material used to
* compose the composite I4.0 Component.
*
* @return
*/
IReference getBillOfMaterial();
}