Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ozg-cloud/lib/xta-client-lib
1 result
Show changes
Commits on Source (4)
......@@ -366,7 +366,7 @@ Die Belegung der Attribute ist für verschiedene Fachlichkeiten unterschiedlich
<xs:documentation>Der Dateiname der Datenquelle, falls der Inhalt einer Datei entnommen worden ist. Bsp.: Für die Übermittlung von xdomea-Nachrichten ist dieses Attribut Pflicht.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="id" type="xs:ID" use="optional">
<xs:attribute name="id" type="oscimeta:NonEmptyStringType" use="optional">
<xs:annotation>
<xs:documentation>Bietet die Möglichkeit, den Inhalt über z.B. eine laufende Nummer zu referenzieren.</xs:documentation>
</xs:annotation>
......
......@@ -126,6 +126,7 @@ public class XtaMessageExampleLoader {
.name(name)
.contentType(getString.apply("contentType"))
.content(createContentDataHandler(data))
.id(MapUtils.getString(messageFile, "id"))
.build();
}
......
......@@ -24,7 +24,7 @@ import lombok.extern.slf4j.Slf4j;
public class XtaTestServerSetupExtension implements BeforeAllCallback, AfterAllCallback {
private static final DockerImageName XTA_TEST_SERVER_IMAGE = DockerImageName.parse("docker.ozg-sh.de/xta-test-server")
.withTag("latest");
.withTag("1.9.0-main");
private static final String XTA_TEST_CLIENT_KEYSTORE_PATH = "store/xta-test-client-john-smith_keystore.p12";
private static final String XTA_TEST_CLIENT_KEYSTORE_PASSWORD = "password";
......