Skip to content

Commit a6c8f4c

Browse files
committed
Replace my.org with example.org because we neither own the domain tutorial.org nor is it unresolvable
1 parent 8815983 commit a6c8f4c

8 files changed

Lines changed: 29 additions & 29 deletions

docs/src/process-development/api-v2/dsf/draft-task-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ icon: creative
1010
```xml
1111
<identifier>
1212
<system value="http://dsf.dev/sid/task-identifier" />
13-
<value value="http://my.org/bpe/Process/processKey/#{version}/task-name" />
13+
<value value="http://example.org/bpe/Process/processKey/#{version}/task-name" />
1414
</identifier>
1515
```
1616
`processKey` should be the same one used in [URLs](versions-placeholders-urls.md#urls).

docs/src/process-development/api-v2/dsf/environment-variables.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Environment variables offer a way to make configuration data available at the st
1111
@Configuration
1212
public class MyConfiguration
1313
{
14-
@Value("${my.org.my.value}")
14+
@Value("${example.org.my.value}")
1515
private String myValue;
1616
}
1717
```
@@ -22,11 +22,11 @@ The DSF provides a feature to automatically generate documentation of environmen
2222
public class MyConfiguration
2323
{
2424
@ProcessDocumentation(processNames = "myorg_MyProcess", description = "My process description", required = true, recommendation = "Foo")
25-
@Value("${my.org.my.value}")
25+
@Value("${example.org.my.value}")
2626
private String myValue;
2727
}
2828
```
29-
This requires the DSF Maven Plugin to be configured in the `pom.xml` file of the project. A configuration to generate documentation for a package `my.org.spring.config` containing all Spring configuration classes looks like this:
29+
This requires the DSF Maven Plugin to be configured in the `pom.xml` file of the project. A configuration to generate documentation for a package `example.org.spring.config` containing all Spring configuration classes looks like this:
3030
```xml
3131
<plugin>
3232
<groupId>dev.dsf</groupId>

docs/src/process-development/api-v2/guides/adding-task-parameters-to-task-profiles.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Next up is the binding for `Task.input:example-input.type`. Because `Task.input.
7171
<path value="Task.input.type" />
7272
<binding>
7373
<strength value="required"/>
74-
<valueSet value="http://my.org/fhir/ValueSet/example" />
74+
<valueSet value="http://example.org/fhir/ValueSet/example" />
7575
</binding>
7676
</element>
7777
</differential>
@@ -95,7 +95,7 @@ Since the [discriminator](https://www.hl7.org/fhir/R4/profiling.html#discriminat
9595
<path value="Task.input.type" />
9696
<binding>
9797
<strength value="required"/>
98-
<valueSet value="http://my.org/fhir/ValueSet/example" />
98+
<valueSet value="http://example.org/fhir/ValueSet/example" />
9999
</binding>
100100
</element>
101101
<element id="Task.input:example-input.type.coding">
@@ -123,7 +123,7 @@ The beginning mentioned how `Task.input.type.coding.system` and `Task.input.type
123123
<path value="Task.input.type" />
124124
<binding>
125125
<strength value="required"/>
126-
<valueSet value="http://my.org/fhir/ValueSet/example" />
126+
<valueSet value="http://example.org/fhir/ValueSet/example" />
127127
</binding>
128128
</element>
129129
<element id="Task.input:example-input.type.coding">
@@ -133,7 +133,7 @@ The beginning mentioned how `Task.input.type.coding.system` and `Task.input.type
133133
<element id="Task.input:example-input.type.coding.system">
134134
<path value="Task.input.type.coding.system"/>
135135
<min value="1"/>
136-
<fixedUri value="http://my.org/fhir/CodeSystem/example"/>
136+
<fixedUri value="http://example.org/fhir/CodeSystem/example"/>
137137
</element>
138138
<element id="Task.input:example-input.type.coding.code">
139139
<path value="Task.input.type.coding.code"/>
@@ -153,7 +153,7 @@ The `type.coding.system` element references a [CodeSystem](../fhir/codesystem.md
153153
<input>
154154
<type>
155155
<coding>
156-
<system value="http://my.org/fhir/CodeSystem/example"/>
156+
<system value="http://example.org/fhir/CodeSystem/example"/>
157157
<code value="example-input" />
158158
</coding>
159159
</type>
@@ -181,7 +181,7 @@ Adding a slice in a different use case will also require to reference an existin
181181
<path value="Task.input.type" />
182182
<binding>
183183
<strength value="required"/>
184-
<valueSet value="http://my.org/fhir/ValueSet/example" />
184+
<valueSet value="http://example.org/fhir/ValueSet/example" />
185185
</binding>
186186
</element>
187187
<element id="Task.input:example-input.type.coding">
@@ -191,7 +191,7 @@ Adding a slice in a different use case will also require to reference an existin
191191
<element id="Task.input:example-input.type.coding.system">
192192
<path value="Task.input.type.coding.system"/>
193193
<min value="1"/>
194-
<fixedUri value="http://my.org/fhir/CodeSystem/example"/>
194+
<fixedUri value="http://example.org/fhir/CodeSystem/example"/>
195195
</element>
196196
<element id="Task.input:example-input.type.coding.code">
197197
<path value="Task.input.type.coding.code"/>

docs/src/process-development/api-v2/guides/creating-activity-definitions.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ The next slice is called `task-profile`:
166166
This section has almost the same structure as `message-name`. The only difference is the value for `value[x].type.code`. This means that instead of `valueString`, it requires using a `valueCanonical` element for `task-profile.value[x]`. Canonical values referring to [Task](../fhir/task.md) profiles in ActivityDefinitions have to conform to the rules outlined by the documentation on [URLs](../dsf/versions-placeholders-urls.md#urls). From the definition above, the following extension element is created and added to the [ActivityDefinition](../fhir/activitydefinition.md):
167167
```xml
168168
<extension url="task-profile">
169-
<valueCanonical value="http://my.org/fhir/StructureDefinition/my-task|#{version}"/>
169+
<valueCanonical value="http://example.org/fhir/StructureDefinition/my-task|#{version}"/>
170170
</extension>
171171
```
172172

@@ -187,7 +187,7 @@ This section has almost the same structure as `message-name`. The only differenc
187187
<valueString value="myMessage"/>
188188
</extension>
189189
<extension url="task-profile">
190-
<valueCanonical value="http://my.org/fhir/StructureDefinition/my-task|#{version}"/>
190+
<valueCanonical value="http://example.org/fhir/StructureDefinition/my-task|#{version}"/>
191191
</extension>
192192
</extension>
193193
</ActivityDefinition>
@@ -475,7 +475,7 @@ The `requester` extension is now finished and can be added it to the [ActivityDe
475475
<valueString value="myMessage"/>
476476
</extension>
477477
<extension url="task-profile">
478-
<valueCanonical value="http://my.org/fhir/StructureDefinition/my-task|#{version}"/>
478+
<valueCanonical value="http://example.org/fhir/StructureDefinition/my-task|#{version}"/>
479479
</extension>
480480
<extension url="requester">
481481
<valueCoding>
@@ -555,7 +555,7 @@ The `recipient` will decide which DSF instance is allowed to process that messag
555555
<valueString value="myMessage"/>
556556
</extension>
557557
<extension url="task-profile">
558-
<valueCanonical value="http://my.org/fhir/StructureDefinition/my-task|#{version}"/>
558+
<valueCanonical value="http://example.org/fhir/StructureDefinition/my-task|#{version}"/>
559559
</extension>
560560
<extension url="requester">
561561
<valueCoding>
@@ -622,7 +622,7 @@ The following elements are managed by the DSF BPE:
622622
<valueString value="myMessage"/>
623623
</extension>
624624
<extension url="task-profile">
625-
<valueCanonical value="http://my.org/fhir/StructureDefinition/my-task|#{version}"/>
625+
<valueCanonical value="http://example.org/fhir/StructureDefinition/my-task|#{version}"/>
626626
</extension>
627627
<extension url="requester">
628628
<valueCoding>
@@ -696,7 +696,7 @@ All other elements can technically be omitted. Still, the following elements are
696696
<valueString value="myMessage"/>
697697
</extension>
698698
<extension url="task-profile">
699-
<valueCanonical value="http://my.org/fhir/StructureDefinition/my-task|#{version}"/>
699+
<valueCanonical value="http://example.org/fhir/StructureDefinition/my-task|#{version}"/>
700700
</extension>
701701
<extension url="requester">
702702
<valueCoding>
@@ -737,7 +737,7 @@ All other elements can technically be omitted. Still, the following elements are
737737
<date value="#{date}"/>
738738
<!-- status managed by bpe -->
739739
<status value="unknown"/>
740-
<url value="http://my.org/bpe/Process/myProcess"/>
740+
<url value="http://example.org/bpe/Process/myProcess"/>
741741
<kind value="Task"/>
742742
<name value="My Process"/>
743743
<title value="My Title For My Process"/>
@@ -748,7 +748,7 @@ All other elements can technically be omitted. Still, the following elements are
748748
<name value="DSF"/>
749749
<telecom>
750750
<system value="email"/>
751-
<value value="noreply@my.org"/>
751+
<value value="noreply@example.org"/>
752752
</telecom>
753753
</contact>
754754
<description value="My Process processes information"/>

docs/src/process-development/api-v2/guides/creating-codesystems-for-dsf-processes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Sometimes it is necessary to create custom [CodeSystem](../fhir/codesystem.md) r
1515
<code value="ALL" />
1616
</tag>
1717
</meta>
18-
<url value="http://my.org/fhir/CodeSystem/my-code-system" /> <!--dummy value-->
18+
<url value="http://example.org/fhir/CodeSystem/my-code-system" /> <!--dummy value-->
1919
<!-- version managed by bpe -->
2020
<version value="#{version}" />
2121
<name value="My CodeSystem" /> <!--dummy value-->

docs/src/process-development/api-v2/guides/creating-task-resources-based-on-a-definition.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@ Like all Task resources created for process plugins, the [`task-start-dic-proces
1111
```xml
1212
<Task xmlns="http://hl7.org/fhir">
1313
<meta>
14-
<profile value="http://my.org/fhir/StructureDefinition/my-task|1.0"/> <!-- dummy value -->
14+
<profile value="http://example.org/fhir/StructureDefinition/my-task|1.0"/> <!-- dummy value -->
1515
</meta>
16-
<instantiatesCanonical value="http://my.org/bpe/Process/myProcess|1.0"/> <!-- dummy value -->
16+
<instantiatesCanonical value="http://example.org/bpe/Process/myProcess|1.0"/> <!-- dummy value -->
1717
<status value="draft"/>
1818
<intent value="order"/>
1919
<authoredOn value="2024-02-08T10:00:00+00:00"/>
2020
<requester>
2121
<type value="Organization"/>
2222
<identifier>
2323
<system value="http://dsf.dev/sid/organization-identifier"/>
24-
<value value="my.org" /> <!-- dummy value -->
24+
<value value="example.org" /> <!-- dummy value -->
2525
</identifier>
2626
</requester>
2727
<restriction>
2828
<recipient>
2929
<type value="Organization"/>
3030
<identifier>
3131
<system value="http://dsf.dev/sid/organization-identifier" />
32-
<value value="my.org" /> <!-- dummy value -->
32+
<value value="example.org" /> <!-- dummy value -->
3333
</identifier>
3434
</recipient>
3535
</restriction>

docs/src/process-development/api-v2/guides/creating-valuesets-for-dsf-processes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In some cases, it may be necessary to create a [ValueSet](../fhir/valueset.md).
1616
<code value="ALL" />
1717
</tag>
1818
</meta>
19-
<url value="http://my.org/fhir/ValueSet/my-value-set"/> <!--dummy value-->
19+
<url value="http://example.org/fhir/ValueSet/my-value-set"/> <!--dummy value-->
2020
<!-- version managed by bpe -->
2121
<version value="#{version}" />
2222
<name value="My ValueSet"/> <!--dummy value-->
@@ -31,7 +31,7 @@ In some cases, it may be necessary to create a [ValueSet](../fhir/valueset.md).
3131
<immutable value="true"/>
3232
<compose>
3333
<include>
34-
<system value="http://my.org/fhir/CodeSystem/my-code-system"/> <!--dummy value-->
34+
<system value="http://example.org/fhir/CodeSystem/my-code-system"/> <!--dummy value-->
3535
<version value="#{version}"/>
3636
</include>
3737
</compose>
@@ -43,14 +43,14 @@ Dummy values should be replaced with appropriate, context-specific values. Eleme
4343
...
4444
<compose>
4545
<include>
46-
<system value="http://my.org/fhir/CodeSystem/my-code-system"/>
46+
<system value="http://example.org/fhir/CodeSystem/my-code-system"/>
4747
<version value="#{version}"/>
4848
<concept>
4949
<code value="my-code"/>
5050
</concept>
5151
</include>
5252
<include>
53-
<system value="http://my.org/fhir/CodeSystem/my-other-code-system"/>
53+
<system value="http://example.org/fhir/CodeSystem/my-other-code-system"/>
5454
<version value="#{version}"/>
5555
<concept>
5656
<code value="my-other-code"/>

docs/src/process-development/api-v2/guides/user-tasks-in-the-dsf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Below is a template for a [Questionnaire](https://www.hl7.org/fhir/R4/questionna
2727
<code value="ALL"/>
2828
</tag>
2929
</meta>
30-
<url value="http://my.org/fhir/Questionnaire/questionnaire-name"/> <!-- file name should be same as the name of your Questionnaire -->
30+
<url value="http://example.org/fhir/Questionnaire/questionnaire-name"/> <!-- file name should be same as the name of your Questionnaire -->
3131
<!-- version managed by bpe -->
3232
<version value="#{version}"/>
3333
<!-- date managed by bpe -->

0 commit comments

Comments
 (0)