Skip to content

Commit 1a749ed

Browse files
committed
Fix ESMF links
1 parent 1dad72f commit 1a749ed

File tree

9 files changed

+16
-20
lines changed

9 files changed

+16
-20
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ This repository contains a detailed developer documentation written in AsciiDoc.
4545

4646
Are you having trouble with ESMF SDK? We want to help!
4747

48-
* Check the [ESMF SDK developer documentation](https://openmanufacturingplatform.github.io/sds-documentation/sds-developer-guide/index.html)
48+
* Check the [ESMF SDK developer documentation](https://eclipse-esmf.github.io/esmf-developer-guide/index.html)
4949
* Ask a question the [community forum](https://www.eclipse.org/forums/index.php/f/617/).
50-
* Check the SAMM [specification](https://openmanufacturingplatform.github.io/sds-documentation/bamm-specification/snapshot/index.html)
50+
* Check the SAMM [specification](https://eclipse-esmf.github.io/samm-specification/snapshot/index.html)
5151
* Having issues with the ESMF SDK? Open a [GitHub issue](https://github.com/eclipse-esmf/esmf-sdk/issues).
5252

5353
## Build and contribute
@@ -238,7 +238,7 @@ GitHub](https://github.com/eclipse-esmf/esmf-sdk/releases).
238238

239239
For information regarding running the command line tool, the available commands and their
240240
description, please have a look at the
241-
[documentation](https://openmanufacturingplatform.github.io/sds-documentation/sds-developer-guide/tooling-guide/bamm-cli.html).
241+
[documentation](https://eclipse-esmf.github.io/esmf-developer-guide/tooling-guide/samm-cli.html).
242242

243243
## License
244244

core/esmf-aspect-meta-model-java/src/main/java/org/eclipse/esmf/metamodel/Property.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ default boolean isOptional() {
5353
* By default Properties are included in the runtime data.
5454
*
5555
* @see
56-
* <a href="https://openmanufacturingplatform.github.io/sds-bamm-aspect-meta-model/bamm-specification/snapshot/modeling-guidelines.html#declaring-enumerations">BAMM Aspect Meta Model
56+
* <a href="https://eclipse-esmf.github.io/samm-specification/2.0.0/modeling-guidelines.html#declaring-enumerations">Semantic Aspect Meta Model
5757
* Specification - Declaring Enumerations</a>
5858
* @since SAMM 1.0.0
5959
*/

core/esmf-aspect-model-aas-generator/README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ proper entry point. It expects an `org.eclipse.esmf.metamodel.Aspect` and return
3030

3131

3232
## Details of the Mapping Concept
33-
The mapping rules applied by the generator are explained in the [user documentation](https://openmanufacturingplatform.github.io/sds-documentation/sds-developer-guide/tooling-guide/java-aspect-tooling.html#details-mapping-aas).
34-
The rules apply to SAMM v1.0.0 [6] and AAS Specification Part 1 V3.0RC01 [7].
33+
The mapping rules applied by the generator are explained in the [user documentation](https://eclipse-esmf.github.io/esmf-developer-guide/tooling-guide/java-aspect-tooling.html#mapping-aas).
34+
The rules apply to SAMM v2.0.0 [5] and AAS Specification Part 1 V3.0RC01 [6].
3535

3636

3737
## References
@@ -43,8 +43,6 @@ The rules apply to SAMM v1.0.0 [6] and AAS Specification Part 1 V3.0RC01 [7].
4343

4444
[4] https://github.com/admin-shell-io/java-serializer
4545

46-
[5] https://openmanufacturingplatform.github.io/sds-documentation/bamm-specification/v1.0.0/characteristics.html
46+
[5] https://eclipse-esmf.github.io/samm-specification/2.0.0/index.html
4747

48-
[6] https://openmanufacturingplatform.github.io/sds-documentation/bamm-specification/v1.0.0/index.html
49-
50-
[7] https://www.plattform-i40.de/IP/Redaktion/EN/Downloads/Publikation/Details_of_the_Asset_Administration_Shell_Part1_V3.html
48+
[6] https://www.plattform-i40.de/IP/Redaktion/EN/Downloads/Publikation/Details_of_the_Asset_Administration_Shell_Part1_V3.html

core/esmf-aspect-model-aas-generator/src/main/java/org/eclipse/esmf/aspectmodel/aas/AspectModelAASVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ public AssetAdministrationShellEnvironment visitSingleEntity( final SingleEntity
607607

608608
@Override
609609
public AssetAdministrationShellEnvironment visitStructuredValue( final StructuredValue structuredValue, final Context context ) {
610-
// https://openmanufacturingplatform.github.io/sds-documentation/bamm-specification/v1.0.0/modeling-guidelines.html#declaring-structured-value
610+
// https://eclipse-esmf.github.io/samm-specification/2.0.0/modeling-guidelines.html#declaring-structured-value
611611
// AAS cannot handle structuredValues, so we can handle them as ordinary Characteristics
612612
return visitCharacteristic( structuredValue, context );
613613
}

core/esmf-aspect-model-document-generators/src/main/resources/docu/templates/html/characteristic-documentation-lib.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#if( !$characteristic.getDataType().get().is( $Scalar ) )
3939
<a href="#$aspectModelHelper.getNameFromURN( $characteristic.getDataType().get().getUrn() )-entity"
4040
#else
41-
<a href="https://openmanufacturingplatform.github.io/sds-SAMM-aspect-meta-model/SAMM-specification/v$aspectModelHelper.getMetaModelVersion().toString()/datatypes.html" target="_blank"
41+
<a href="https://eclipse-esmf.github.io/samm-specification/$aspectModelHelper.getMetaModelVersion().toString()/datatypes.html" target="_blank"
4242
#end
4343
class="break-all underline">$characteristic.getDataType().get().getUrn()</a>
4444
#end

core/esmf-aspect-model-urn/src/main/java/org/eclipse/esmf/aspectmodel/urn/AspectModelUrn.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@
3333
/**
3434
* Represents the identifier URN of an Aspect Model.
3535
*
36-
* @see
37-
* <a href="https://openmanufacturingplatform.github.io/sds-bamm-aspect-meta-model/bamm-specification/v1.0.0/namespaces.html">https://openmanufacturingplatform.github.io/sds-bamm-aspect-meta-model/bamm-specification/v1.0.0/namespaces.html</a>
38-
* for the definition of the URN.
36+
* @see <a href="https://eclipse-esmf.github.io/samm-specification/2.0.0/namespaces.html">Definition of the URN</a>
3937
*/
4038
public class AspectModelUrn implements Comparable<AspectModelUrn> {
4139
public static final String NAMESPACE_REGEX = "([a-zA-Z0-9()+,\\-.:=@;$_!*']|%[0-9a-fA-F]{2})+";

documentation/developer-guide/modules/tooling-guide/pages/java-aspect-tooling.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ include::example$HandlingTry.java[tags=handlingTry]
4545
The tooling can be made available in two different versions: `release` and `milestone`. The release version represents a stable version of the product
4646
and can be referenced in your projects in the usual way from the Maven Central repository. There is also the possibility to have the intermediate builds
4747
made available, these are called `milestone` builds. Instead of Maven Central, these are released via
48-
https://github.com/orgs/OpenManufacturingPlatform/packages?repo_name=sds-sdk[GitHub Packages] mechanism. +
48+
https://github.com/orgs/eclipse-esmf/packages?repo_name=esmf-sdk[GitHub Packages] mechanism. +
4949
To be able to use the artifacts released in this way in your projects, first the right repository has to be added to your `pom.xml` file:
5050
[source, xml]
5151
----
@@ -736,7 +736,7 @@ allows AAS submodels to be described with rich semantics, as it is possible with
736736
=== Details of the Mapping Concept
737737

738738
In the following section, the mapping rules applied by the generator are explained. The rules apply
739-
to https://openmanufacturingplatform.github.io/sds-documentation/samm-specification/v1.0.0/index.html[SAMM v1.0.0] and
739+
to https://eclipse-esmf.github.io/samm-specification/2.0.0/index.html[SAMM v2.0.0] and
740740
https://www.plattform-i40.de/IP/Redaktion/EN/Downloads/Publikation/Details_of_the_Asset_Administration_Shell_Part1_V3.html[AAS
741741
Specification Part 1 V3.0RC01].
742742

@@ -758,7 +758,7 @@ Specification Part 1 V3.0RC01].
758758

759759
| samm:Aspect.urn | aas:Submodel.semanticId |
760760

761-
| **samm:Property** | aas:Property, aas:SubmodelElementCollection | The AAS type is derived from the type of the SAMM Characteristic specifying the SAMM property. Depending on the type it is decided what the resulting AAS element will be. In case of an Entity it will result in a SubmodelElementCollection. It will also be a SubmodelElementCollection if the SAMM Characteristic is of a Collection type (see the https://openmanufacturingplatform.github.io/sds-documentation/samm-specification/v1.0.0/characteristics.html[Characteristics taxonomy]). In all other cases an aas:Property will be generated
761+
| **samm:Property** | aas:Property, aas:SubmodelElementCollection | The AAS type is derived from the type of the SAMM Characteristic specifying the SAMM property. Depending on the type it is decided what the resulting AAS element will be. In case of an Entity it will result in a SubmodelElementCollection. It will also be a SubmodelElementCollection if the SAMM Characteristic is of a Collection type (see the https://eclipse-esmf.github.io/samm-specification/2.0.0/characteristics.html[Characteristics taxonomy]). In all other cases an aas:Property will be generated
762762

763763
| samm:Property.name | aas:Property.idShort |
764764

tools/samm-cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Semantic Aspect Meta Model Command Line Interface
22

33
The SAMM CLI bundles the functionality provided in the ESMF SDK in a CLI application to be used in you terminal for ad-hoc usage outside an IDE.
4-
For details on the usage and offered functionalities see the [documentation](https://openmanufacturingplatform.github.io/sds-documentation/sds-developer-guide/tooling-guide/bamm-cli.html).
4+
For details on the usage and offered functionalities see the [documentation](https://eclipse-esmf.github.io/esmf-developer-guide/tooling-guide/samm-cli.html).
55

tools/samm-cli/src/main/java/org/eclipse/esmf/SammCli.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
parameterListHeading = "%n@|bold Parameters|@:%n",
3232
optionListHeading = "%n@|bold Options|@:%n",
3333
footer = "%nRun @|bold " + SammCli.COMMAND_NAME + " help <command>|@ to display its help."
34-
+ "%nDocumentation: https://openmanufacturingplatform.github.io/sds-documentation/"
34+
+ "%nDocumentation: https://eclipse-esmf.github.io/esmf-documentation/index.html"
3535
)
3636
@SuppressWarnings( "squid:S1147" ) // System.exit is really required here, this is a CLI tool
3737
public class SammCli extends AbstractCommand {

0 commit comments

Comments
 (0)