Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "BaSyx / Introductory Examples / Java / Step 5"

m (Extends registration)
Line 1: Line 1:
 
= Step 5: Creating the AAS, registering it, and uploading to the AAS server =
 
= Step 5: Creating the AAS, registering it, and uploading to the AAS server =
  
The last example did create and register the oven Submodel. This Submodel is available in the network and can be accessed by the users. In this example step, an [[ BaSyx.HowTo.AAS | Asset Administration Shell]] will be created as a unified representation of the oven. The AAS provides an asset independent digital representation. All asset specific data, such as temperature sensors and invokable operations are provided through Submodels of the AAS. The created AAS for the oven with therefore reference one Submodel, which is the oven Submodel from the previous steps.  
+
The last example did create the oven Submodel. This Submodel is available in the network and can be accessed by the users. In this example step, an [[ BaSyx.HowTo.AAS | Asset Administration Shell]] will be created as a unified representation of the oven. The AAS provides an asset independent digital representation. All asset specific data, such as temperature sensors and invokable operations are provided through Submodels of the AAS. The created AAS for the oven with therefore reference one Submodel, which is the oven Submodel from the previous steps. The AAS of the oven will be hosted on the AAS server in the IT infrastructure. It is registered in the [[BaSyx_/_Documentation_/_VAB | AASRegistry]] using an AAS descriptor to ensure that it can be found in the network. The descriptor also contains a Submodel descriptor. Once the model is registered, it is accessible by its IT. If the model is re-deployed to a different location, it is sufficient to update the registry entry. 
  
 
The created AAS then can be explored through its [[BaSyx_/_Documentation_/_API_/_AssetAdministrationShell | HTTP-Rest]] with any HTTP client, e.g. with a web browser.
 
The created AAS then can be explored through its [[BaSyx_/_Documentation_/_API_/_AssetAdministrationShell | HTTP-Rest]] with any HTTP client, e.g. with a web browser.
Line 47: Line 47:
  
 
<syntaxhighlight lang="java" style="margin-left: 4em">
 
<syntaxhighlight lang="java" style="margin-left: 4em">
 
+
// Create a descriptor for the AAS
// Register the VAB model at the directory (locally in this case)
+
 
AASDescriptor aasDescriptor = new AASDescriptor(aas, "http://localhost:4000/handson/oven/aas");
 
AASDescriptor aasDescriptor = new AASDescriptor(aas, "http://localhost:4000/handson/oven/aas");
 
 
// Explicitly create and add submodel descriptors
 
// Explicitly create and add submodel descriptors
 
SubmodelDescriptor sensorSMDescriptor = new SubmodelDescriptor(ovenModel, "http://localhost:4000/handson/oven/aas/submodels/oven");
 
SubmodelDescriptor sensorSMDescriptor = new SubmodelDescriptor(ovenModel, "http://localhost:4000/handson/oven/aas/submodels/oven");
 +
 +
        // Depending on the registry endpoint, this path needs to be adapted (cf. step 2)
 +
final String REGISTRYPATH = "http://localhost:4000/handson/registry/";
 +
 +
        // Register the oven Submodel at the registry
 +
        AASRegistryProxy registry = new AASRegistryProxy(REGISTRYPATH)
 
registry.register(aasDescriptor);
 
registry.register(aasDescriptor);
 
 
</syntaxhighlight>
 
</syntaxhighlight>
  
  
 
Now we have a working Asset Administration Shell that has been uploaded to the AAS server, as well as an oven Submodel. Both, the Submodel and the AAS have been registered at the registry.
 
Now we have a working Asset Administration Shell that has been uploaded to the AAS server, as well as an oven Submodel. Both, the Submodel and the AAS have been registered at the registry.

Revision as of 07:27, 30 April 2021

Step 5: Creating the AAS, registering it, and uploading to the AAS server

The last example did create the oven Submodel. This Submodel is available in the network and can be accessed by the users. In this example step, an Asset Administration Shell will be created as a unified representation of the oven. The AAS provides an asset independent digital representation. All asset specific data, such as temperature sensors and invokable operations are provided through Submodels of the AAS. The created AAS for the oven with therefore reference one Submodel, which is the oven Submodel from the previous steps. The AAS of the oven will be hosted on the AAS server in the IT infrastructure. It is registered in the AASRegistry using an AAS descriptor to ensure that it can be found in the network. The descriptor also contains a Submodel descriptor. Once the model is registered, it is accessible by its IT. If the model is re-deployed to a different location, it is sufficient to update the registry entry.

The created AAS then can be explored through its HTTP-Rest with any HTTP client, e.g. with a web browser.


Creating the AAS

The Asset Administration Shell is a digital representation of a real world asset. Every asset is described at least by a short name (in this example ovenAsset), and by an URN. The short name does not need to be globally unique, it is sufficient if it is unique in the local context. The URN is used to refer to the asset, and therefore it should be unique. In this example, we will be using "urn:org.eclipse.basyx:OvenAsset". A guide for creating global URNs, and a proposal for an URN scheme that also includes versioning and revision information is provided here - Asset Administration Shell.

A device may come with an initial AAS that is transferred to an AAS server when the device is connected. Alternatively, an AAS may be sent in a serialized format, e.g. as .aasx or as JSON file before a physical device is delivered. In this example, the AAS is created with Java code, and uploaded by the device to the AAS server, and also registered in the registry.


	// The URN is a unique name, and refers to the asset
	ModelUrn aasURN = new ModelUrn("urn:org.eclipse.basyx:OvenAAS");
 
	// A digital representation of the asset
	Asset asset = new Asset("ovenAsset", aasURN, AssetKind.INSTANCE);
 
	// Create the Asset Administration Shell object
	AssetAdministrationShell aas = new AssetAdministrationShell("oven", aasURN, asset);


The created Asset Administration Shell needs to be populated with the Submodels of the AAS. For this example, this will be the oven Submodel. This code should be placed after the last lines of the main function from the previous step.


	// Now add the references of the submodels to the AAS header
	aas.addSubmodel(ovenModel);


Creating the AAS descriptor and registering everything

The created Asset Administration Shell needs to be uploaded to the AAS server, and to the AAS registry. The registry requires an AAS descriptor that contains information about the AAS itself, and about the Submodels of the AAS.


	// Create a descriptor for the AAS
	AASDescriptor aasDescriptor = new AASDescriptor(aas, "http://localhost:4000/handson/oven/aas");
	// Explicitly create and add submodel descriptors
	SubmodelDescriptor sensorSMDescriptor = new SubmodelDescriptor(ovenModel, "http://localhost:4000/handson/oven/aas/submodels/oven");
 
        // Depending on the registry endpoint, this path needs to be adapted (cf. step 2)
	final String REGISTRYPATH = "http://localhost:4000/handson/registry/";
 
        // Register the oven Submodel at the registry
        AASRegistryProxy registry = new AASRegistryProxy(REGISTRYPATH)
	registry.register(aasDescriptor);


Now we have a working Asset Administration Shell that has been uploaded to the AAS server, as well as an oven Submodel. Both, the Submodel and the AAS have been registered at the registry.

Back to the top