Skip to content

Commit 42820c4

Browse files
committed
WFCORE-7350: Elytron schema bump to 19
1 parent b956ba3 commit 42820c4

40 files changed

+12886
-39
lines changed

elytron/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@
415415
<exclude>legacy*.xml</exclude>
416416
<exclude>elytron-subsystem-community*.xml</exclude>
417417
</excludes>
418-
<systemId>src/main/resources/schema/wildfly-elytron_18_0.xsd</systemId>
418+
<systemId>src/main/resources/schema/wildfly-elytron_19_0.xsd</systemId>
419419
</validationSet>
420420
<validationSet>
421421
<dir>src/main/resources/schema</dir>

elytron/src/main/java/org/wildfly/extension/elytron/ElytronSubsystemSchema.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,10 @@ public enum ElytronSubsystemSchema implements PersistentSubsystemSchema<ElytronS
5353
VERSION_16_0(16),
5454
VERSION_17_0(17),
5555
VERSION_18_0(18),
56-
VERSION_18_0_COMMUNITY(18, Stability.COMMUNITY),
56+
VERSION_18_0_COMMUNITY(18),
57+
VERSION_19_0_COMMUNITY(19),
5758
;
58-
static final Map<Stability, ElytronSubsystemSchema> CURRENT = Feature.map(EnumSet.of(VERSION_18_0, VERSION_18_0_COMMUNITY));
59+
static final Map<Stability, ElytronSubsystemSchema> CURRENT = Feature.map(EnumSet.of(VERSION_19_0_COMMUNITY));
5960

6061
private final VersionedNamespace<IntVersion, ElytronSubsystemSchema> namespace;
6162

elytron/src/main/resources/schema/wildfly-elytron_19_0.xsd

Lines changed: 6405 additions & 0 deletions
Large diffs are not rendered by default.

elytron/src/main/resources/schema/wildfly-elytron_community_19_0.xsd

Lines changed: 6441 additions & 0 deletions
Large diffs are not rendered by default.

elytron/src/test/resources/org/wildfly/extension/elytron/audit-logging.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
~ SPDX-License-Identifier: Apache-2.0
44
-->
55

6-
<subsystem xmlns="urn:wildfly:elytron:18.0" default-authentication-context="child">
6+
<subsystem xmlns="urn:wildfly:elytron:19.0" default-authentication-context="child">
77
<authentication-client>
88
<authentication-context name="child"/>
99
</authentication-client>

elytron/src/test/resources/org/wildfly/extension/elytron/authentication-client.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
~ SPDX-License-Identifier: Apache-2.0
44
-->
55

6-
<subsystem xmlns="urn:wildfly:elytron:18.0" default-authentication-context="child">
6+
<subsystem xmlns="urn:wildfly:elytron:19.0" default-authentication-context="child">
77
<authentication-client>
88
<authentication-configuration name="base" anonymous="true" />
99
<authentication-configuration name="most"

elytron/src/test/resources/org/wildfly/extension/elytron/compare-mappers.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
~ SPDX-License-Identifier: Apache-2.0
44
-->
55

6-
<subsystem xmlns="urn:wildfly:elytron:18.0">
6+
<subsystem xmlns="urn:wildfly:elytron:19.0">
77
<mappers>
88
<custom-permission-mapper name="CustomPermissionMapper" class-name="org.wildfly.elytron.CustomPermissionMapper" module="l.m" />
99
<custom-permission-mapper name="CustomPermissionMapper2" class-name="org.wildfly.elytron.CustomPermissionMapper" module="l.m" />

elytron/src/test/resources/org/wildfly/extension/elytron/credential-security-factories.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
~ SPDX-License-Identifier: Apache-2.0
44
-->
55

6-
<subsystem xmlns="urn:wildfly:elytron:18.0">
6+
<subsystem xmlns="urn:wildfly:elytron:19.0">
77
<credential-security-factories>
88
<custom-credential-security-factory name="CustomFactory" module="a.b.c" class-name="org.wildfly.security.ElytronFactory">
99
<configuration>

elytron/src/test/resources/org/wildfly/extension/elytron/credential-store-updates.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-->
55

66
<!-- for needs of SaslTestCase and KeyStoresTestCase -->
7-
<subsystem xmlns="urn:wildfly:elytron:18.0">
7+
<subsystem xmlns="urn:wildfly:elytron:19.0">
88
<credential-stores>
99
<credential-store name="store1" location="target/test.credential.store1" create="true">
1010
<credential-reference clear-text="super_secret1"/>

elytron/src/test/resources/org/wildfly/extension/elytron/credential-store.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-->
55

66
<!-- Initial configuration as used by the CredentailStoreTestCase -->
7-
<subsystem xmlns="urn:wildfly:elytron:18.0">
7+
<subsystem xmlns="urn:wildfly:elytron:19.0">
88
<credential-stores>
99
<credential-store name="test" relative-to="jboss.server.config.dir" location="test.cs" create="true">
1010
<credential-reference clear-text="password"/>

0 commit comments

Comments
 (0)