diff --git a/kie-server-parent/kie-server-api/pom.xml b/kie-server-parent/kie-server-api/pom.xml
index b9fa88a609..9215c0d90c 100644
--- a/kie-server-parent/kie-server-api/pom.xml
+++ b/kie-server-parent/kie-server-api/pom.xml
@@ -42,7 +42,7 @@
org.slf4j
slf4j-api
-
+
org.kie
kie-api
@@ -56,7 +56,7 @@
kie-soup-xstream
-
+
org.drools
drools-core
@@ -74,13 +74,13 @@
optaplanner-persistence-jaxb
-
+
org.kie
kie-dmn-api
-
+
com.fasterxml.jackson.core
jackson-annotations
@@ -102,13 +102,13 @@
jackson-datatype-jsr310
-
+
com.thoughtworks.xstream
xstream
-
+
org.apache.commons
commons-lang3
@@ -142,7 +142,7 @@
jaxb-xjc
test
-
+
org.kie
kie-pmml-dependencies
@@ -153,7 +153,7 @@
-
+
org.drools
kie-pmml
diff --git a/kie-server-parent/kie-server-api/src/main/java/org/kie/server/api/marshalling/json/JSONMarshaller.java b/kie-server-parent/kie-server-api/src/main/java/org/kie/server/api/marshalling/json/JSONMarshaller.java
index aaa63001d5..310139615c 100644
--- a/kie-server-parent/kie-server-api/src/main/java/org/kie/server/api/marshalling/json/JSONMarshaller.java
+++ b/kie-server-parent/kie-server-api/src/main/java/org/kie/server/api/marshalling/json/JSONMarshaller.java
@@ -510,7 +510,12 @@ public List findSubtypes(Annotated a) {
complete.addAll(base);
}
if (customClasses != null) {
- complete.addAll(customClasses);
+ for (NamedType namedType : customClasses) {
+ Class> clazz = namedType.getType();
+ if (!a.getRawType().equals(clazz) && a.getRawType().isAssignableFrom(clazz)) {
+ complete.add(namedType);
+ }
+ }
}
return complete;
}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/json/JSONMarshallerLargeTest.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/json/JSONMarshallerLargeTest.java
new file mode 100644
index 0000000000..4a060f5738
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/json/JSONMarshallerLargeTest.java
@@ -0,0 +1,54 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.kie.server.api.marshalling.json;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.util.Set;
+import java.util.stream.Collectors;
+
+import org.drools.core.util.IoUtils;
+import org.junit.Test;
+import org.kie.server.api.marshalling.test.model.Fact;
+import org.reflections.Reflections;
+import org.reflections.scanners.SubTypesScanner;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+public class JSONMarshallerLargeTest {
+
+ private Logger logger = LoggerFactory.getLogger(JSONMarshallerLargeTest.class);
+
+ @Test(timeout = 5000L)
+ public void testLargeNumberOfClasses() throws IOException {
+ try (InputStream is = JSONMarshallerLargeTest.class.getClassLoader().getResourceAsStream("complex_payload.json")) {
+ String content = new String(IoUtils.readBytesFromInputStream(is));
+
+ Reflections reflections = new Reflections("org.kie.server.api.marshalling.test.model", new SubTypesScanner(false));
+ Set> clazzes = reflections.getSubTypesOf(Object.class).stream().collect(Collectors.toSet());
+ clazzes.remove(Fact.class);
+
+ JSONMarshaller marshaller = new JSONMarshaller(clazzes, JSONMarshallerLargeTest.class.getClassLoader());
+ Fact object = marshaller.unmarshall(content, Fact.class);
+ assertThat(object).isNotNull();
+ logger.info("object captured {}", object);
+ }
+ }
+
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/Fact.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/Fact.java
new file mode 100644
index 0000000000..80dd416f3c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/Fact.java
@@ -0,0 +1,29 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model;
+
+public class Fact implements java.io.Serializable {
+
+ private Object object;
+
+ public Object getObject() {
+ return object;
+ }
+
+ public void setObject(Object object) {
+ this.object = object;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData1.java
new file mode 100644
index 0000000000..264f79be1c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData1.java
@@ -0,0 +1,52 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData10.java
new file mode 100644
index 0000000000..8f23fc764a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData10.java
@@ -0,0 +1,52 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData100.java
new file mode 100644
index 0000000000..60bcd58407
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData100.java
@@ -0,0 +1,52 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData11.java
new file mode 100644
index 0000000000..bf03ede2cb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData11.java
@@ -0,0 +1,52 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData12.java
new file mode 100644
index 0000000000..6a311f132a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData12.java
@@ -0,0 +1,52 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData13.java
new file mode 100644
index 0000000000..4e08d136b2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData13.java
@@ -0,0 +1,52 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData14.java
new file mode 100644
index 0000000000..5533431cee
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData14.java
@@ -0,0 +1,52 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData15.java
new file mode 100644
index 0000000000..0ed3cccb99
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData16.java
new file mode 100644
index 0000000000..4ff8f29e8b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData17.java
new file mode 100644
index 0000000000..8f7a56d39f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData18.java
new file mode 100644
index 0000000000..3caba7d415
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData19.java
new file mode 100644
index 0000000000..8e17831cf6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData2.java
new file mode 100644
index 0000000000..b4db73941b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData20.java
new file mode 100644
index 0000000000..8ca62ef238
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData21.java
new file mode 100644
index 0000000000..84f5dabb62
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData22.java
new file mode 100644
index 0000000000..8fdd6c2562
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData23.java
new file mode 100644
index 0000000000..77d9084ed5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData24.java
new file mode 100644
index 0000000000..10d1cfc2b6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData25.java
new file mode 100644
index 0000000000..a25a6540a3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData26.java
new file mode 100644
index 0000000000..54231e9c17
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData27.java
new file mode 100644
index 0000000000..c48f3f3002
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData28.java
new file mode 100644
index 0000000000..4d0421a171
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData29.java
new file mode 100644
index 0000000000..a727314ba8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData3.java
new file mode 100644
index 0000000000..3d11adbe5d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData30.java
new file mode 100644
index 0000000000..91f8a94f07
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData31.java
new file mode 100644
index 0000000000..6d793aeb9f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData32.java
new file mode 100644
index 0000000000..8e8b362045
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData33.java
new file mode 100644
index 0000000000..dc93e4a509
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData34.java
new file mode 100644
index 0000000000..e132a4afb4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData35.java
new file mode 100644
index 0000000000..302e4950c8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData36.java
new file mode 100644
index 0000000000..e53ebfdbf4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData37.java
new file mode 100644
index 0000000000..69d0b8a0ff
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData38.java
new file mode 100644
index 0000000000..5dce3d406b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData39.java
new file mode 100644
index 0000000000..6d3a66c409
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData4.java
new file mode 100644
index 0000000000..346d22cb03
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData40.java
new file mode 100644
index 0000000000..caf789f678
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData41.java
new file mode 100644
index 0000000000..9a4f3e49b0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData42.java
new file mode 100644
index 0000000000..236b18e4f5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData43.java
new file mode 100644
index 0000000000..3d5b53188a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData44.java
new file mode 100644
index 0000000000..061a9e095d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData45.java
new file mode 100644
index 0000000000..d25cd53aed
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData46.java
new file mode 100644
index 0000000000..d6fdd6725f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData47.java
new file mode 100644
index 0000000000..5427f4fc63
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData48.java
new file mode 100644
index 0000000000..e3d09f90e3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData49.java
new file mode 100644
index 0000000000..db8a718158
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData5.java
new file mode 100644
index 0000000000..82164dc554
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData50.java
new file mode 100644
index 0000000000..96a2097a69
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData51.java
new file mode 100644
index 0000000000..468fca95d1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData52.java
new file mode 100644
index 0000000000..4ef20f905b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData53.java
new file mode 100644
index 0000000000..05f44a3514
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData54.java
new file mode 100644
index 0000000000..0b93dc1a71
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData55.java
new file mode 100644
index 0000000000..7d4d851e0f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData56.java
new file mode 100644
index 0000000000..4e9eebbc25
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData57.java
new file mode 100644
index 0000000000..728b828584
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData58.java
new file mode 100644
index 0000000000..c14bebc231
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData59.java
new file mode 100644
index 0000000000..bba1661fca
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData6.java
new file mode 100644
index 0000000000..eda6de8f1f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData60.java
new file mode 100644
index 0000000000..7d3a72465a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData61.java
new file mode 100644
index 0000000000..8f2bafb11c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData62.java
new file mode 100644
index 0000000000..e98bac505b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData63.java
new file mode 100644
index 0000000000..1fc63cb20d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData64.java
new file mode 100644
index 0000000000..64d926b0e3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData65.java
new file mode 100644
index 0000000000..af7f6ddef3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData66.java
new file mode 100644
index 0000000000..ad00d2a1e0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData67.java
new file mode 100644
index 0000000000..d85283340d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData68.java
new file mode 100644
index 0000000000..a0c0dd8bf8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData69.java
new file mode 100644
index 0000000000..2b43b6b1d3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData7.java
new file mode 100644
index 0000000000..4ec77bb706
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData70.java
new file mode 100644
index 0000000000..559a71e159
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData71.java
new file mode 100644
index 0000000000..26671d6a70
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData72.java
new file mode 100644
index 0000000000..5e44c1856c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData73.java
new file mode 100644
index 0000000000..aa1b28f08c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData74.java
new file mode 100644
index 0000000000..30dfa3365b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData75.java
new file mode 100644
index 0000000000..cd349e2ebc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData76.java
new file mode 100644
index 0000000000..c6f5ea99a3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData77.java
new file mode 100644
index 0000000000..6a85b212cd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData78.java
new file mode 100644
index 0000000000..0e5d64d978
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData79.java
new file mode 100644
index 0000000000..d36727001f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData8.java
new file mode 100644
index 0000000000..3cebb75510
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData80.java
new file mode 100644
index 0000000000..b863c9d2c7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData81.java
new file mode 100644
index 0000000000..a72997242b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData82.java
new file mode 100644
index 0000000000..866e17343e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData83.java
new file mode 100644
index 0000000000..3ffefda4c1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData84.java
new file mode 100644
index 0000000000..c7fa0145bd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData85.java
new file mode 100644
index 0000000000..387077e174
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData86.java
new file mode 100644
index 0000000000..882c7e7307
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData87.java
new file mode 100644
index 0000000000..74f4714c54
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData88.java
new file mode 100644
index 0000000000..35d734dbeb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData89.java
new file mode 100644
index 0000000000..11a49bdc86
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData9.java
new file mode 100644
index 0000000000..70115e032f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData90.java
new file mode 100644
index 0000000000..8cb4092039
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData91.java
new file mode 100644
index 0000000000..d1a9116049
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData92.java
new file mode 100644
index 0000000000..a2386e73a0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData93.java
new file mode 100644
index 0000000000..c5f6bf9c2c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData94.java
new file mode 100644
index 0000000000..be65839229
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData95.java
new file mode 100644
index 0000000000..890f5e0c44
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData96.java
new file mode 100644
index 0000000000..f3c6eb0c2e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData97.java
new file mode 100644
index 0000000000..b616839074
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData98.java
new file mode 100644
index 0000000000..db20216121
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData99.java
new file mode 100644
index 0000000000..ba5f80bad7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package1/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package1;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData1.java
new file mode 100644
index 0000000000..c7ea05ec56
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData10.java
new file mode 100644
index 0000000000..de10190dc4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData100.java
new file mode 100644
index 0000000000..a804a2ec25
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData11.java
new file mode 100644
index 0000000000..2ebf1c02c5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData12.java
new file mode 100644
index 0000000000..f1791d0696
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData13.java
new file mode 100644
index 0000000000..e673e0b443
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData14.java
new file mode 100644
index 0000000000..5abef91d5b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData15.java
new file mode 100644
index 0000000000..89c56ce1dc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData16.java
new file mode 100644
index 0000000000..315f11e73e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData17.java
new file mode 100644
index 0000000000..3870028890
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData18.java
new file mode 100644
index 0000000000..a29dbdb147
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData19.java
new file mode 100644
index 0000000000..c4b4254064
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData2.java
new file mode 100644
index 0000000000..79074d70c1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData20.java
new file mode 100644
index 0000000000..5e3f1fcefb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData21.java
new file mode 100644
index 0000000000..ad3bfafc7d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData22.java
new file mode 100644
index 0000000000..27e79828b0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData23.java
new file mode 100644
index 0000000000..b6e9b49ac5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData24.java
new file mode 100644
index 0000000000..14f042495f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData25.java
new file mode 100644
index 0000000000..0273d5821a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData26.java
new file mode 100644
index 0000000000..c29cbd9361
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData27.java
new file mode 100644
index 0000000000..51d4542bff
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData28.java
new file mode 100644
index 0000000000..144358dee8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData29.java
new file mode 100644
index 0000000000..2f25aba993
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData3.java
new file mode 100644
index 0000000000..ce7de2114d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData30.java
new file mode 100644
index 0000000000..6d6380d9f7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData31.java
new file mode 100644
index 0000000000..c09bd83da5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData32.java
new file mode 100644
index 0000000000..aba8f8e3ab
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData33.java
new file mode 100644
index 0000000000..3cdb219c91
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData34.java
new file mode 100644
index 0000000000..4b4f4a43d5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData35.java
new file mode 100644
index 0000000000..6113d1a663
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData36.java
new file mode 100644
index 0000000000..b1a39720b1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData37.java
new file mode 100644
index 0000000000..ff77620fcc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData38.java
new file mode 100644
index 0000000000..424cce6227
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData39.java
new file mode 100644
index 0000000000..df7f66ebb9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData4.java
new file mode 100644
index 0000000000..5496d1eb12
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData40.java
new file mode 100644
index 0000000000..ddd239db0b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData41.java
new file mode 100644
index 0000000000..a9df3b60c0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData42.java
new file mode 100644
index 0000000000..1e5e10bcc0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData43.java
new file mode 100644
index 0000000000..3e69cdb392
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData44.java
new file mode 100644
index 0000000000..48ea90685c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData45.java
new file mode 100644
index 0000000000..a520e3539f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData46.java
new file mode 100644
index 0000000000..97d07d6293
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData47.java
new file mode 100644
index 0000000000..460036cb69
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData48.java
new file mode 100644
index 0000000000..e3ee55595c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData49.java
new file mode 100644
index 0000000000..528044eccb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData5.java
new file mode 100644
index 0000000000..876109bf8b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData50.java
new file mode 100644
index 0000000000..876920b24d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData51.java
new file mode 100644
index 0000000000..0df74dcfa9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData52.java
new file mode 100644
index 0000000000..02987f3132
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData53.java
new file mode 100644
index 0000000000..8039396938
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData54.java
new file mode 100644
index 0000000000..b3e74e8f0b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData55.java
new file mode 100644
index 0000000000..39a00e4eab
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData56.java
new file mode 100644
index 0000000000..fc3dc21df8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData57.java
new file mode 100644
index 0000000000..449c4b74c3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData58.java
new file mode 100644
index 0000000000..50beab608c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData59.java
new file mode 100644
index 0000000000..e6af6741ab
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData6.java
new file mode 100644
index 0000000000..43f6c0bfc9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData60.java
new file mode 100644
index 0000000000..334faaa8cc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData61.java
new file mode 100644
index 0000000000..1f0ea317e8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData62.java
new file mode 100644
index 0000000000..f530a17a81
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData63.java
new file mode 100644
index 0000000000..f00eb12bd0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData64.java
new file mode 100644
index 0000000000..55749fbc71
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData65.java
new file mode 100644
index 0000000000..1c94157dcc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData66.java
new file mode 100644
index 0000000000..a0984c48c7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData67.java
new file mode 100644
index 0000000000..4da1556fd5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData68.java
new file mode 100644
index 0000000000..5448191255
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData69.java
new file mode 100644
index 0000000000..409e52bb88
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData7.java
new file mode 100644
index 0000000000..090369339b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData70.java
new file mode 100644
index 0000000000..96f46af264
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData71.java
new file mode 100644
index 0000000000..02f08d7aa5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData72.java
new file mode 100644
index 0000000000..c1f51dcbfa
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData73.java
new file mode 100644
index 0000000000..c34a77e415
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData74.java
new file mode 100644
index 0000000000..059b53a17d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData75.java
new file mode 100644
index 0000000000..8000dd3b1d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData76.java
new file mode 100644
index 0000000000..53bd397d0f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData77.java
new file mode 100644
index 0000000000..27faa2529f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData78.java
new file mode 100644
index 0000000000..6e8ebb297e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData79.java
new file mode 100644
index 0000000000..f51c3202ee
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData8.java
new file mode 100644
index 0000000000..cebb9d8135
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData80.java
new file mode 100644
index 0000000000..60323bc8f7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData81.java
new file mode 100644
index 0000000000..96992daa7a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData82.java
new file mode 100644
index 0000000000..b1ccee90d1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData83.java
new file mode 100644
index 0000000000..1b1234d4a5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData84.java
new file mode 100644
index 0000000000..06001a9ade
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData85.java
new file mode 100644
index 0000000000..6542fe4935
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData86.java
new file mode 100644
index 0000000000..badd522a5f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData87.java
new file mode 100644
index 0000000000..f94453818c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData88.java
new file mode 100644
index 0000000000..3634b6242d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData89.java
new file mode 100644
index 0000000000..b5cf37642b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData9.java
new file mode 100644
index 0000000000..0480f23db5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData90.java
new file mode 100644
index 0000000000..fbac2b99e5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData91.java
new file mode 100644
index 0000000000..44a39f532b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData92.java
new file mode 100644
index 0000000000..15bf484b29
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData93.java
new file mode 100644
index 0000000000..87e096d9ee
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData94.java
new file mode 100644
index 0000000000..b2cdadc081
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData95.java
new file mode 100644
index 0000000000..45ed270b88
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData96.java
new file mode 100644
index 0000000000..432cd7a0ba
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData97.java
new file mode 100644
index 0000000000..78b04a4c5a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData98.java
new file mode 100644
index 0000000000..caba072f0a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData99.java
new file mode 100644
index 0000000000..612614e411
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package10/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package10;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData1.java
new file mode 100644
index 0000000000..c17971c8f6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData10.java
new file mode 100644
index 0000000000..a5c059df9c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData100.java
new file mode 100644
index 0000000000..97641943d4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData11.java
new file mode 100644
index 0000000000..a0d91fd036
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData12.java
new file mode 100644
index 0000000000..4e915d4524
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData13.java
new file mode 100644
index 0000000000..64a5c9546e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData14.java
new file mode 100644
index 0000000000..d2ca11bb89
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData15.java
new file mode 100644
index 0000000000..4fd01ed721
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData16.java
new file mode 100644
index 0000000000..952f9cbaae
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData17.java
new file mode 100644
index 0000000000..dd35727b93
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData18.java
new file mode 100644
index 0000000000..3fcb98d48c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData19.java
new file mode 100644
index 0000000000..9bdb1d0a11
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData2.java
new file mode 100644
index 0000000000..bc01b6c847
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData20.java
new file mode 100644
index 0000000000..4667d02438
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData21.java
new file mode 100644
index 0000000000..adeed05241
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData22.java
new file mode 100644
index 0000000000..81d5098562
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData23.java
new file mode 100644
index 0000000000..54011f0b00
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData24.java
new file mode 100644
index 0000000000..c286e4b354
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData25.java
new file mode 100644
index 0000000000..cc98895ae1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData26.java
new file mode 100644
index 0000000000..9a57007501
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData27.java
new file mode 100644
index 0000000000..5269abaf73
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData28.java
new file mode 100644
index 0000000000..e6b1108e6f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData29.java
new file mode 100644
index 0000000000..058792a8ab
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData3.java
new file mode 100644
index 0000000000..c62ba281f8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData30.java
new file mode 100644
index 0000000000..f43e6869a2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData31.java
new file mode 100644
index 0000000000..aae5c7344b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData32.java
new file mode 100644
index 0000000000..b9c6489866
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData33.java
new file mode 100644
index 0000000000..c75ad7079c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData34.java
new file mode 100644
index 0000000000..9a062d0f4e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData35.java
new file mode 100644
index 0000000000..47fbdb65a4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData36.java
new file mode 100644
index 0000000000..23973300a4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData37.java
new file mode 100644
index 0000000000..f7984c7275
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData38.java
new file mode 100644
index 0000000000..f98d2f175b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData39.java
new file mode 100644
index 0000000000..fea04672b1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData4.java
new file mode 100644
index 0000000000..f9dce4ba3e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData40.java
new file mode 100644
index 0000000000..d8147b9474
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData41.java
new file mode 100644
index 0000000000..6b5bf09ec1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData42.java
new file mode 100644
index 0000000000..a9399c0e19
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData43.java
new file mode 100644
index 0000000000..f237d1a838
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData44.java
new file mode 100644
index 0000000000..f676a4a110
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData45.java
new file mode 100644
index 0000000000..7583ed118b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData46.java
new file mode 100644
index 0000000000..378ea15a12
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData47.java
new file mode 100644
index 0000000000..5585df8814
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData48.java
new file mode 100644
index 0000000000..c04cc05428
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData49.java
new file mode 100644
index 0000000000..c0b3f65aff
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData5.java
new file mode 100644
index 0000000000..4a0cad32cf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData50.java
new file mode 100644
index 0000000000..c3bd901746
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData51.java
new file mode 100644
index 0000000000..ee8ebf85c6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData52.java
new file mode 100644
index 0000000000..06deedd7e8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData53.java
new file mode 100644
index 0000000000..3d397c7beb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData54.java
new file mode 100644
index 0000000000..fcb18acf1b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData55.java
new file mode 100644
index 0000000000..68edf7a64a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData56.java
new file mode 100644
index 0000000000..61af10580d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData57.java
new file mode 100644
index 0000000000..ca5b60eb45
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData58.java
new file mode 100644
index 0000000000..cfe36d174a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData59.java
new file mode 100644
index 0000000000..c1619ec823
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData6.java
new file mode 100644
index 0000000000..6c85a3e176
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData60.java
new file mode 100644
index 0000000000..e24d337d8a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData61.java
new file mode 100644
index 0000000000..01a52c0de6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData62.java
new file mode 100644
index 0000000000..5f2fd57525
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData63.java
new file mode 100644
index 0000000000..2f1e3dd714
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData64.java
new file mode 100644
index 0000000000..ec94eb9936
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData65.java
new file mode 100644
index 0000000000..bc4a512894
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData66.java
new file mode 100644
index 0000000000..a312380467
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData67.java
new file mode 100644
index 0000000000..5ad57f2313
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData68.java
new file mode 100644
index 0000000000..ec1e08324b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData69.java
new file mode 100644
index 0000000000..c6a49c9c75
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData7.java
new file mode 100644
index 0000000000..0f0e862e34
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData70.java
new file mode 100644
index 0000000000..2f0566c823
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData71.java
new file mode 100644
index 0000000000..662475a19e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData72.java
new file mode 100644
index 0000000000..33c7ab1980
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData73.java
new file mode 100644
index 0000000000..135207becc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData74.java
new file mode 100644
index 0000000000..7990b29d9f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData75.java
new file mode 100644
index 0000000000..aa12e02bf6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData76.java
new file mode 100644
index 0000000000..f4b733e8cb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData77.java
new file mode 100644
index 0000000000..1b77bd2974
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData78.java
new file mode 100644
index 0000000000..397e64584a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData79.java
new file mode 100644
index 0000000000..47133d4f1c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData8.java
new file mode 100644
index 0000000000..201b833fcd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData80.java
new file mode 100644
index 0000000000..f328f55388
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData81.java
new file mode 100644
index 0000000000..a07d900033
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData82.java
new file mode 100644
index 0000000000..21c12ec080
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData83.java
new file mode 100644
index 0000000000..01ede3ad04
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData84.java
new file mode 100644
index 0000000000..1f83467968
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData85.java
new file mode 100644
index 0000000000..b73cd9a4e9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData86.java
new file mode 100644
index 0000000000..86b78fe10e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData87.java
new file mode 100644
index 0000000000..4fe608f27b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData88.java
new file mode 100644
index 0000000000..49896bc647
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData89.java
new file mode 100644
index 0000000000..96b9cbf358
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData9.java
new file mode 100644
index 0000000000..edfa4f975c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData90.java
new file mode 100644
index 0000000000..7351e4a25c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData91.java
new file mode 100644
index 0000000000..59e66023d9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData92.java
new file mode 100644
index 0000000000..7b4c28aa89
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData93.java
new file mode 100644
index 0000000000..1a980b2ddb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData94.java
new file mode 100644
index 0000000000..342fe9c0ba
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData95.java
new file mode 100644
index 0000000000..6a14feff16
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData96.java
new file mode 100644
index 0000000000..1287fb6cd7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData97.java
new file mode 100644
index 0000000000..40cc51f951
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData98.java
new file mode 100644
index 0000000000..851ccf575d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData99.java
new file mode 100644
index 0000000000..eb19e18776
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package11/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package11;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData1.java
new file mode 100644
index 0000000000..37e2f62271
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData10.java
new file mode 100644
index 0000000000..c2dc93e686
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData100.java
new file mode 100644
index 0000000000..89e072d642
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData11.java
new file mode 100644
index 0000000000..83574c6df8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData12.java
new file mode 100644
index 0000000000..b6ac35eb50
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData13.java
new file mode 100644
index 0000000000..cb913bd463
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData14.java
new file mode 100644
index 0000000000..944cd72688
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData15.java
new file mode 100644
index 0000000000..3b3e26d470
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData16.java
new file mode 100644
index 0000000000..57a2c4484c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData17.java
new file mode 100644
index 0000000000..e3b30b83f5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData18.java
new file mode 100644
index 0000000000..5ef6fd3883
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData19.java
new file mode 100644
index 0000000000..4859e016a8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData2.java
new file mode 100644
index 0000000000..287b8d2dbc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData20.java
new file mode 100644
index 0000000000..a1fbca5054
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData21.java
new file mode 100644
index 0000000000..2ab2225377
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData22.java
new file mode 100644
index 0000000000..cc49f6809e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData23.java
new file mode 100644
index 0000000000..b60f6a9860
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData24.java
new file mode 100644
index 0000000000..bf469c89ad
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData25.java
new file mode 100644
index 0000000000..f34ae4dab9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData26.java
new file mode 100644
index 0000000000..17f05ea228
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData27.java
new file mode 100644
index 0000000000..cc1d9fe195
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData28.java
new file mode 100644
index 0000000000..4a5e67c79d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData29.java
new file mode 100644
index 0000000000..ce00dfe4c5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData3.java
new file mode 100644
index 0000000000..f4d53abc05
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData30.java
new file mode 100644
index 0000000000..63964c8e77
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData31.java
new file mode 100644
index 0000000000..bb9a92b41f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData32.java
new file mode 100644
index 0000000000..d7151bf5c5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData33.java
new file mode 100644
index 0000000000..5fa87c9e3b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData34.java
new file mode 100644
index 0000000000..e3830c0224
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData35.java
new file mode 100644
index 0000000000..2f38cd1722
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData36.java
new file mode 100644
index 0000000000..6aa8095822
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData37.java
new file mode 100644
index 0000000000..05d5019bec
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData38.java
new file mode 100644
index 0000000000..e114a9a117
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData39.java
new file mode 100644
index 0000000000..5a4106186d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData4.java
new file mode 100644
index 0000000000..7cc605b84c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData40.java
new file mode 100644
index 0000000000..64192d1214
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData41.java
new file mode 100644
index 0000000000..1b5665ad27
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData42.java
new file mode 100644
index 0000000000..e980442f76
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData43.java
new file mode 100644
index 0000000000..a4c30ee872
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData44.java
new file mode 100644
index 0000000000..78d4c7ad74
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData45.java
new file mode 100644
index 0000000000..f224a3ac8e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData46.java
new file mode 100644
index 0000000000..357211f939
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData47.java
new file mode 100644
index 0000000000..21124a7591
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData48.java
new file mode 100644
index 0000000000..493a98f155
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData49.java
new file mode 100644
index 0000000000..3d382696bd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData5.java
new file mode 100644
index 0000000000..ea912f0d15
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData50.java
new file mode 100644
index 0000000000..fa65e2662d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData51.java
new file mode 100644
index 0000000000..73615e521b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData52.java
new file mode 100644
index 0000000000..b818da4e8a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData53.java
new file mode 100644
index 0000000000..90cd7968e9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData54.java
new file mode 100644
index 0000000000..2989b0f1b5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData55.java
new file mode 100644
index 0000000000..99480bc628
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData56.java
new file mode 100644
index 0000000000..f3cd753d19
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData57.java
new file mode 100644
index 0000000000..d0759c8a3d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData58.java
new file mode 100644
index 0000000000..7d979e9d79
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData59.java
new file mode 100644
index 0000000000..55770e55e0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData6.java
new file mode 100644
index 0000000000..3154cbb784
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData60.java
new file mode 100644
index 0000000000..50eaf6d84e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData61.java
new file mode 100644
index 0000000000..f3c8eb9de3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData62.java
new file mode 100644
index 0000000000..b048a9c855
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData63.java
new file mode 100644
index 0000000000..efec0b7621
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData64.java
new file mode 100644
index 0000000000..39e97792a4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData65.java
new file mode 100644
index 0000000000..131f1a35f0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData66.java
new file mode 100644
index 0000000000..53b08e5652
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData67.java
new file mode 100644
index 0000000000..a17b848435
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData68.java
new file mode 100644
index 0000000000..d32bdda20f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData69.java
new file mode 100644
index 0000000000..cb8cd725cf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData7.java
new file mode 100644
index 0000000000..a76406a3b3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData70.java
new file mode 100644
index 0000000000..778c05d53f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData71.java
new file mode 100644
index 0000000000..7fef422669
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData72.java
new file mode 100644
index 0000000000..d393baa4cb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData73.java
new file mode 100644
index 0000000000..e1762b06f1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData74.java
new file mode 100644
index 0000000000..f449d63cba
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData75.java
new file mode 100644
index 0000000000..7b1610a339
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData76.java
new file mode 100644
index 0000000000..d18427d52d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData77.java
new file mode 100644
index 0000000000..d2b43a47d5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData78.java
new file mode 100644
index 0000000000..0622d1091b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData79.java
new file mode 100644
index 0000000000..94eb74d9f4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData8.java
new file mode 100644
index 0000000000..9b60114267
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData80.java
new file mode 100644
index 0000000000..10dedfdbef
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData81.java
new file mode 100644
index 0000000000..5d033e9eab
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData82.java
new file mode 100644
index 0000000000..7426873170
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData83.java
new file mode 100644
index 0000000000..1572996a4c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData84.java
new file mode 100644
index 0000000000..92ae1659e1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData85.java
new file mode 100644
index 0000000000..808581ff39
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData86.java
new file mode 100644
index 0000000000..362f95ab39
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData87.java
new file mode 100644
index 0000000000..95820250fc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData88.java
new file mode 100644
index 0000000000..4d7188f071
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData89.java
new file mode 100644
index 0000000000..36a04e413b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData9.java
new file mode 100644
index 0000000000..625240851a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData90.java
new file mode 100644
index 0000000000..9b09c602ff
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData91.java
new file mode 100644
index 0000000000..ba1b681ea3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData92.java
new file mode 100644
index 0000000000..fc4eb4d35d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData93.java
new file mode 100644
index 0000000000..a0c4bd25bb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData94.java
new file mode 100644
index 0000000000..00d33b7601
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData95.java
new file mode 100644
index 0000000000..d9e59170d1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData96.java
new file mode 100644
index 0000000000..2f8438fc49
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData97.java
new file mode 100644
index 0000000000..91fe2429db
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData98.java
new file mode 100644
index 0000000000..5b82ddabc9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData99.java
new file mode 100644
index 0000000000..9455410b00
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package12/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package12;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData1.java
new file mode 100644
index 0000000000..f6c7c5c1a4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData10.java
new file mode 100644
index 0000000000..ffca6f8ce5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData100.java
new file mode 100644
index 0000000000..771a786fa7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData11.java
new file mode 100644
index 0000000000..a0f7647e5c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData12.java
new file mode 100644
index 0000000000..d429afea5a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData13.java
new file mode 100644
index 0000000000..37e2fc597c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData14.java
new file mode 100644
index 0000000000..7317ffb956
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData15.java
new file mode 100644
index 0000000000..b982d35a44
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData16.java
new file mode 100644
index 0000000000..aa827bde0d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData17.java
new file mode 100644
index 0000000000..f0daaa454a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData18.java
new file mode 100644
index 0000000000..d302b06f9c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData19.java
new file mode 100644
index 0000000000..995979e4cd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData2.java
new file mode 100644
index 0000000000..7ffc3bcb6f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData20.java
new file mode 100644
index 0000000000..07c6c68add
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData21.java
new file mode 100644
index 0000000000..7b59a3bf55
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData22.java
new file mode 100644
index 0000000000..c8df295fd8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData23.java
new file mode 100644
index 0000000000..40548d1ad6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData24.java
new file mode 100644
index 0000000000..42f7e3d89f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData25.java
new file mode 100644
index 0000000000..738ca531c3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData26.java
new file mode 100644
index 0000000000..4f70cea2bb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData27.java
new file mode 100644
index 0000000000..111ebe3277
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData28.java
new file mode 100644
index 0000000000..4319eb080d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData29.java
new file mode 100644
index 0000000000..f9f06d069f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData3.java
new file mode 100644
index 0000000000..e45289d80a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData30.java
new file mode 100644
index 0000000000..5838c45cec
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData31.java
new file mode 100644
index 0000000000..1f3d50312b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData32.java
new file mode 100644
index 0000000000..f5dd7130ad
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData33.java
new file mode 100644
index 0000000000..88e3280ce1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData34.java
new file mode 100644
index 0000000000..312ba0a45e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData35.java
new file mode 100644
index 0000000000..ba0428952e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData36.java
new file mode 100644
index 0000000000..e3d40ac019
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData37.java
new file mode 100644
index 0000000000..f9a65861d9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData38.java
new file mode 100644
index 0000000000..28d610c0e5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData39.java
new file mode 100644
index 0000000000..c4f8526bba
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData4.java
new file mode 100644
index 0000000000..37fdab1a9b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData40.java
new file mode 100644
index 0000000000..7ce1c37263
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData41.java
new file mode 100644
index 0000000000..33f1e45bb6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData42.java
new file mode 100644
index 0000000000..25171379e1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData43.java
new file mode 100644
index 0000000000..95ea7ccb60
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData44.java
new file mode 100644
index 0000000000..44f6d00d96
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData45.java
new file mode 100644
index 0000000000..8586627665
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData46.java
new file mode 100644
index 0000000000..7537e1ad21
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData47.java
new file mode 100644
index 0000000000..9c38592058
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData48.java
new file mode 100644
index 0000000000..a4a0f8282f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData49.java
new file mode 100644
index 0000000000..29c4e1bb85
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData5.java
new file mode 100644
index 0000000000..0469be400c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData50.java
new file mode 100644
index 0000000000..71584f15fb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData51.java
new file mode 100644
index 0000000000..efc9ea22e2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData52.java
new file mode 100644
index 0000000000..3d44d51b89
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData53.java
new file mode 100644
index 0000000000..5980d11f5a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData54.java
new file mode 100644
index 0000000000..7c38bc848e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData55.java
new file mode 100644
index 0000000000..85583324d9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData56.java
new file mode 100644
index 0000000000..084be93cad
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData57.java
new file mode 100644
index 0000000000..c58d509f91
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData58.java
new file mode 100644
index 0000000000..6d58560df3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData59.java
new file mode 100644
index 0000000000..d3316de653
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData6.java
new file mode 100644
index 0000000000..cdce0a4c0d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData60.java
new file mode 100644
index 0000000000..948af0086b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData61.java
new file mode 100644
index 0000000000..1869407be6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData62.java
new file mode 100644
index 0000000000..a39d15f08c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData63.java
new file mode 100644
index 0000000000..b4d91694bb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData64.java
new file mode 100644
index 0000000000..0f6586175d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData65.java
new file mode 100644
index 0000000000..652c2b8822
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData66.java
new file mode 100644
index 0000000000..09734e9cd2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData67.java
new file mode 100644
index 0000000000..8b351d5d2f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData68.java
new file mode 100644
index 0000000000..32b4103a84
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData69.java
new file mode 100644
index 0000000000..c0ceb77382
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData7.java
new file mode 100644
index 0000000000..b45fdcc860
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData70.java
new file mode 100644
index 0000000000..e704e75cb3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData71.java
new file mode 100644
index 0000000000..6b53057860
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData72.java
new file mode 100644
index 0000000000..90a771d94e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData73.java
new file mode 100644
index 0000000000..0766738677
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData74.java
new file mode 100644
index 0000000000..2c081f0db6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData75.java
new file mode 100644
index 0000000000..1ed412b295
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData76.java
new file mode 100644
index 0000000000..6ccd3a9760
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData77.java
new file mode 100644
index 0000000000..a714962552
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData78.java
new file mode 100644
index 0000000000..3a0ad727bd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData79.java
new file mode 100644
index 0000000000..41d3d13375
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData8.java
new file mode 100644
index 0000000000..56f60834a5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData80.java
new file mode 100644
index 0000000000..c7951498cc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData81.java
new file mode 100644
index 0000000000..f5a50c5891
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData82.java
new file mode 100644
index 0000000000..a3f59b65a3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData83.java
new file mode 100644
index 0000000000..aafef1fdd5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData84.java
new file mode 100644
index 0000000000..efb262b510
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData85.java
new file mode 100644
index 0000000000..c7f03e9ebe
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData86.java
new file mode 100644
index 0000000000..3d61631e77
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData87.java
new file mode 100644
index 0000000000..d5ffba2166
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData88.java
new file mode 100644
index 0000000000..2b26ef53cb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData89.java
new file mode 100644
index 0000000000..5bc161c9af
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData9.java
new file mode 100644
index 0000000000..253978a45d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData90.java
new file mode 100644
index 0000000000..84efe7d6de
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData91.java
new file mode 100644
index 0000000000..0d189532a5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData92.java
new file mode 100644
index 0000000000..5ca4d08f38
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData93.java
new file mode 100644
index 0000000000..83693c544f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData94.java
new file mode 100644
index 0000000000..e1fd0755ee
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData95.java
new file mode 100644
index 0000000000..4b7ba8694e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData96.java
new file mode 100644
index 0000000000..6f97066cb2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData97.java
new file mode 100644
index 0000000000..7bc8202c9c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData98.java
new file mode 100644
index 0000000000..80e8cd50a5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData99.java
new file mode 100644
index 0000000000..b4f64c7c2b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package13/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package13;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData1.java
new file mode 100644
index 0000000000..780725b08b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData10.java
new file mode 100644
index 0000000000..223fd42a76
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData100.java
new file mode 100644
index 0000000000..b0dc6fa8de
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData11.java
new file mode 100644
index 0000000000..8f00eb55bf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData12.java
new file mode 100644
index 0000000000..f8b901247e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData13.java
new file mode 100644
index 0000000000..c356afaa2e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData14.java
new file mode 100644
index 0000000000..ee70aa21c3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData15.java
new file mode 100644
index 0000000000..5ffae6bd12
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData16.java
new file mode 100644
index 0000000000..c99397a22d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData17.java
new file mode 100644
index 0000000000..ce09202b34
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData18.java
new file mode 100644
index 0000000000..b3f7adc596
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData19.java
new file mode 100644
index 0000000000..564230bcb2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData2.java
new file mode 100644
index 0000000000..f455e793fe
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData20.java
new file mode 100644
index 0000000000..046dd38f3d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData21.java
new file mode 100644
index 0000000000..bf1a95007a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData22.java
new file mode 100644
index 0000000000..3af822e498
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData23.java
new file mode 100644
index 0000000000..7c0c7a2590
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData24.java
new file mode 100644
index 0000000000..2d06590cd3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData25.java
new file mode 100644
index 0000000000..16978a3083
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData26.java
new file mode 100644
index 0000000000..7607e87c78
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData27.java
new file mode 100644
index 0000000000..8d820b9f9e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData28.java
new file mode 100644
index 0000000000..aa511d4d13
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData29.java
new file mode 100644
index 0000000000..2abea2e1b5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData3.java
new file mode 100644
index 0000000000..224ca7150a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData30.java
new file mode 100644
index 0000000000..b1af17beda
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData31.java
new file mode 100644
index 0000000000..907f4a88e2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData32.java
new file mode 100644
index 0000000000..109bdecd7d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData33.java
new file mode 100644
index 0000000000..5d99cf3235
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData34.java
new file mode 100644
index 0000000000..d72a9e941d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData35.java
new file mode 100644
index 0000000000..4fff49f57b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData36.java
new file mode 100644
index 0000000000..09ef7250db
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData37.java
new file mode 100644
index 0000000000..cb80b957a3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData38.java
new file mode 100644
index 0000000000..ee6a62cede
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData39.java
new file mode 100644
index 0000000000..00038dc281
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData4.java
new file mode 100644
index 0000000000..7d438c72c3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData40.java
new file mode 100644
index 0000000000..1ef4f5b0e5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData41.java
new file mode 100644
index 0000000000..07fb3a6cd1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData42.java
new file mode 100644
index 0000000000..bdb711cb03
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData43.java
new file mode 100644
index 0000000000..0095ecee29
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData44.java
new file mode 100644
index 0000000000..dc897b438b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData45.java
new file mode 100644
index 0000000000..447cef9bb3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData46.java
new file mode 100644
index 0000000000..a630dde0bf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData47.java
new file mode 100644
index 0000000000..5f3dc0d8b7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData48.java
new file mode 100644
index 0000000000..42c6bb3b74
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData49.java
new file mode 100644
index 0000000000..e7611ca933
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData5.java
new file mode 100644
index 0000000000..cb29c7e2a3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData50.java
new file mode 100644
index 0000000000..dacbf4771d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData51.java
new file mode 100644
index 0000000000..20d0d00a2c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData52.java
new file mode 100644
index 0000000000..4c261782af
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData53.java
new file mode 100644
index 0000000000..f0d0754238
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData54.java
new file mode 100644
index 0000000000..0fbf042c74
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData55.java
new file mode 100644
index 0000000000..318537686c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData56.java
new file mode 100644
index 0000000000..115986f0e7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData57.java
new file mode 100644
index 0000000000..31aecd8f2a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData58.java
new file mode 100644
index 0000000000..719b054fcb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData59.java
new file mode 100644
index 0000000000..265ff27316
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData6.java
new file mode 100644
index 0000000000..68691b91a4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData60.java
new file mode 100644
index 0000000000..08150849c4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData61.java
new file mode 100644
index 0000000000..4994edce01
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData62.java
new file mode 100644
index 0000000000..2b1f32f7ae
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData63.java
new file mode 100644
index 0000000000..14fede7cf8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData64.java
new file mode 100644
index 0000000000..4a78cf4644
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData65.java
new file mode 100644
index 0000000000..bba9c97193
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData66.java
new file mode 100644
index 0000000000..c3ebb064c6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData67.java
new file mode 100644
index 0000000000..108e872b17
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData68.java
new file mode 100644
index 0000000000..d0d18cb0a3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData69.java
new file mode 100644
index 0000000000..6be3e3073c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData7.java
new file mode 100644
index 0000000000..1ce0a82b50
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData70.java
new file mode 100644
index 0000000000..4ec5cd062a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData71.java
new file mode 100644
index 0000000000..07fc2e4781
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData72.java
new file mode 100644
index 0000000000..31f1eb6141
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData73.java
new file mode 100644
index 0000000000..e6df05808f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData74.java
new file mode 100644
index 0000000000..721a8e3d46
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData75.java
new file mode 100644
index 0000000000..b06a33b559
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData76.java
new file mode 100644
index 0000000000..3585df5137
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData77.java
new file mode 100644
index 0000000000..936576fb5c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData78.java
new file mode 100644
index 0000000000..a7dec0cc0f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData79.java
new file mode 100644
index 0000000000..39211d2001
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData8.java
new file mode 100644
index 0000000000..0083d2a095
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData80.java
new file mode 100644
index 0000000000..74b7cedbe5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData81.java
new file mode 100644
index 0000000000..0ccf51a554
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData82.java
new file mode 100644
index 0000000000..6066d3c85c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData83.java
new file mode 100644
index 0000000000..96a394bb04
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData84.java
new file mode 100644
index 0000000000..c1889db28b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData85.java
new file mode 100644
index 0000000000..b4fddc91ad
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData86.java
new file mode 100644
index 0000000000..9a90b06292
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData87.java
new file mode 100644
index 0000000000..04525c48f8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData88.java
new file mode 100644
index 0000000000..7a91986dc4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData89.java
new file mode 100644
index 0000000000..e68721b9d3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData9.java
new file mode 100644
index 0000000000..6792dd9dd8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData90.java
new file mode 100644
index 0000000000..e1b7447832
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData91.java
new file mode 100644
index 0000000000..ce8a34a683
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData92.java
new file mode 100644
index 0000000000..2f785291c7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData93.java
new file mode 100644
index 0000000000..bd4e3d62a6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData94.java
new file mode 100644
index 0000000000..f1e88f23f5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData95.java
new file mode 100644
index 0000000000..7c81ebeafc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData96.java
new file mode 100644
index 0000000000..4bd11841c0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData97.java
new file mode 100644
index 0000000000..bddf97b41f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData98.java
new file mode 100644
index 0000000000..c785389b9b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData99.java
new file mode 100644
index 0000000000..024d9f53cb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package14/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package14;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData1.java
new file mode 100644
index 0000000000..5c2ead6d44
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData10.java
new file mode 100644
index 0000000000..fdb7266d5c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData100.java
new file mode 100644
index 0000000000..dbc728d64b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData11.java
new file mode 100644
index 0000000000..a398849018
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData12.java
new file mode 100644
index 0000000000..11c330ea5f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData13.java
new file mode 100644
index 0000000000..759cbdcccb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData14.java
new file mode 100644
index 0000000000..1b10f1a1df
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData15.java
new file mode 100644
index 0000000000..a053fda8c2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData16.java
new file mode 100644
index 0000000000..4f831361d2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData17.java
new file mode 100644
index 0000000000..4f965465b2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData18.java
new file mode 100644
index 0000000000..7f17b83e34
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData19.java
new file mode 100644
index 0000000000..32c5559993
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData2.java
new file mode 100644
index 0000000000..2cf3696e2c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData20.java
new file mode 100644
index 0000000000..5d6db7213f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData21.java
new file mode 100644
index 0000000000..1dc8ad02b3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData22.java
new file mode 100644
index 0000000000..1937149498
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData23.java
new file mode 100644
index 0000000000..53e4149440
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData24.java
new file mode 100644
index 0000000000..6113df38d0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData25.java
new file mode 100644
index 0000000000..8592f6a991
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData26.java
new file mode 100644
index 0000000000..285bfd0a6c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData27.java
new file mode 100644
index 0000000000..510ebb26f8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData28.java
new file mode 100644
index 0000000000..5ae1fff17e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData29.java
new file mode 100644
index 0000000000..2f00b0d3ff
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData3.java
new file mode 100644
index 0000000000..41276fce4c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData30.java
new file mode 100644
index 0000000000..0ad89d04ae
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData31.java
new file mode 100644
index 0000000000..ae0859b5c3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData32.java
new file mode 100644
index 0000000000..53b77f1c44
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData33.java
new file mode 100644
index 0000000000..331f252856
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData34.java
new file mode 100644
index 0000000000..704495a7a9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData35.java
new file mode 100644
index 0000000000..166e58fafd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData36.java
new file mode 100644
index 0000000000..51be271884
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData37.java
new file mode 100644
index 0000000000..886a1a8a18
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData38.java
new file mode 100644
index 0000000000..68b495c770
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData39.java
new file mode 100644
index 0000000000..f5928a32d1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData4.java
new file mode 100644
index 0000000000..c73128ebad
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData40.java
new file mode 100644
index 0000000000..ff5e628262
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData41.java
new file mode 100644
index 0000000000..86bfd96fe5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData42.java
new file mode 100644
index 0000000000..258bb2257f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData43.java
new file mode 100644
index 0000000000..77bdd678a3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData44.java
new file mode 100644
index 0000000000..a70f4d6c12
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData45.java
new file mode 100644
index 0000000000..c5c95178b0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData46.java
new file mode 100644
index 0000000000..df2883a815
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData47.java
new file mode 100644
index 0000000000..5543f19edc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData48.java
new file mode 100644
index 0000000000..e3c833f0cd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData49.java
new file mode 100644
index 0000000000..aaeac18850
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData5.java
new file mode 100644
index 0000000000..b08ee66918
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData50.java
new file mode 100644
index 0000000000..60cea53fd7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData51.java
new file mode 100644
index 0000000000..40b3cea4fb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData52.java
new file mode 100644
index 0000000000..6fb662b8b4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData53.java
new file mode 100644
index 0000000000..8e8c055a87
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData54.java
new file mode 100644
index 0000000000..8948807122
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData55.java
new file mode 100644
index 0000000000..fce4af4e55
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData56.java
new file mode 100644
index 0000000000..acc21acc32
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData57.java
new file mode 100644
index 0000000000..57c32a2bc2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData58.java
new file mode 100644
index 0000000000..ae4766a31c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData59.java
new file mode 100644
index 0000000000..d7d86b6c22
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData6.java
new file mode 100644
index 0000000000..65fcb1203d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData60.java
new file mode 100644
index 0000000000..c56d5e7518
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData61.java
new file mode 100644
index 0000000000..33793bdf19
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData62.java
new file mode 100644
index 0000000000..1f63b0dbe1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData63.java
new file mode 100644
index 0000000000..26abcefb4d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData64.java
new file mode 100644
index 0000000000..6f1017bbe4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData65.java
new file mode 100644
index 0000000000..57193b5d23
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData66.java
new file mode 100644
index 0000000000..4a91004f85
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData67.java
new file mode 100644
index 0000000000..2d0ec82c81
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData68.java
new file mode 100644
index 0000000000..101b7beab0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData69.java
new file mode 100644
index 0000000000..f0da26eefa
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData7.java
new file mode 100644
index 0000000000..66eb51a5de
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData70.java
new file mode 100644
index 0000000000..28e00a3fa1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData71.java
new file mode 100644
index 0000000000..b813ba885f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData72.java
new file mode 100644
index 0000000000..2f4c058f29
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData73.java
new file mode 100644
index 0000000000..a9814d2f50
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData74.java
new file mode 100644
index 0000000000..30ff5174f3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData75.java
new file mode 100644
index 0000000000..1d5fc0ae76
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData76.java
new file mode 100644
index 0000000000..023fdc3c37
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData77.java
new file mode 100644
index 0000000000..ac9d329f91
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData78.java
new file mode 100644
index 0000000000..7d28527b53
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData79.java
new file mode 100644
index 0000000000..f6db779d76
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData8.java
new file mode 100644
index 0000000000..3d7892cc4f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData80.java
new file mode 100644
index 0000000000..49d8fa070e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData81.java
new file mode 100644
index 0000000000..048f786328
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData82.java
new file mode 100644
index 0000000000..58006ab334
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData83.java
new file mode 100644
index 0000000000..1b394cfa12
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData84.java
new file mode 100644
index 0000000000..6ae2fa948a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData85.java
new file mode 100644
index 0000000000..f59f26f6f2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData86.java
new file mode 100644
index 0000000000..d25dd71b48
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData87.java
new file mode 100644
index 0000000000..4f7810244f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData88.java
new file mode 100644
index 0000000000..575c5fbfb2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData89.java
new file mode 100644
index 0000000000..36777223f3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData9.java
new file mode 100644
index 0000000000..9c9eeb1e85
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData90.java
new file mode 100644
index 0000000000..a9c31d7f29
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData91.java
new file mode 100644
index 0000000000..868d84d004
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData92.java
new file mode 100644
index 0000000000..72f3e5ee4f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData93.java
new file mode 100644
index 0000000000..71459925e5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData94.java
new file mode 100644
index 0000000000..4fcdea1a79
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData95.java
new file mode 100644
index 0000000000..35fa970a0e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData96.java
new file mode 100644
index 0000000000..f33f174c7b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData97.java
new file mode 100644
index 0000000000..8ace282572
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData98.java
new file mode 100644
index 0000000000..ece5c54b55
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData99.java
new file mode 100644
index 0000000000..1c9ce060dc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package15/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package15;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData1.java
new file mode 100644
index 0000000000..660ce1176b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData10.java
new file mode 100644
index 0000000000..62b880752d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData100.java
new file mode 100644
index 0000000000..f0b0bfeda4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData11.java
new file mode 100644
index 0000000000..be3931cc06
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData12.java
new file mode 100644
index 0000000000..b0f19aac80
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData13.java
new file mode 100644
index 0000000000..e554fa1711
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData14.java
new file mode 100644
index 0000000000..349e92cf95
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData15.java
new file mode 100644
index 0000000000..963043ae36
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData16.java
new file mode 100644
index 0000000000..666f0bc617
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData17.java
new file mode 100644
index 0000000000..a6bd62bf9e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData18.java
new file mode 100644
index 0000000000..f1025ea373
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData19.java
new file mode 100644
index 0000000000..69b35225ae
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData2.java
new file mode 100644
index 0000000000..0a5c0f5217
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData20.java
new file mode 100644
index 0000000000..3088658470
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData21.java
new file mode 100644
index 0000000000..61ae0959cc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData22.java
new file mode 100644
index 0000000000..f51682f0b7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData23.java
new file mode 100644
index 0000000000..72ddc77d7e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData24.java
new file mode 100644
index 0000000000..80f56b03ac
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData25.java
new file mode 100644
index 0000000000..1a896653ce
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData26.java
new file mode 100644
index 0000000000..7a1bfbf585
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData27.java
new file mode 100644
index 0000000000..f8708f94d4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData28.java
new file mode 100644
index 0000000000..c2890d91ec
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData29.java
new file mode 100644
index 0000000000..e8c092d183
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData3.java
new file mode 100644
index 0000000000..216d4ec96a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData30.java
new file mode 100644
index 0000000000..d819caf8df
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData31.java
new file mode 100644
index 0000000000..baa6dd3222
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData32.java
new file mode 100644
index 0000000000..eb69dca2c8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData33.java
new file mode 100644
index 0000000000..83ec1b1ceb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData34.java
new file mode 100644
index 0000000000..830016ffd4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData35.java
new file mode 100644
index 0000000000..cf100fd85f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData36.java
new file mode 100644
index 0000000000..382eca6e75
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData37.java
new file mode 100644
index 0000000000..79261a7378
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData38.java
new file mode 100644
index 0000000000..c1cd9c755e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData39.java
new file mode 100644
index 0000000000..041a83ae86
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData4.java
new file mode 100644
index 0000000000..3b8c8346fd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData40.java
new file mode 100644
index 0000000000..1270d9113f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData41.java
new file mode 100644
index 0000000000..989f0c1b8c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData42.java
new file mode 100644
index 0000000000..db0838228c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData43.java
new file mode 100644
index 0000000000..3ca1134e9a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData44.java
new file mode 100644
index 0000000000..2750169baf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData45.java
new file mode 100644
index 0000000000..b9e11b15a2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData46.java
new file mode 100644
index 0000000000..7ea07e4537
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData47.java
new file mode 100644
index 0000000000..45b341a7e8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData48.java
new file mode 100644
index 0000000000..a7e693e6b2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData49.java
new file mode 100644
index 0000000000..cde71b1184
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData5.java
new file mode 100644
index 0000000000..393b8b76ec
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData50.java
new file mode 100644
index 0000000000..0b808d7321
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData51.java
new file mode 100644
index 0000000000..353b4f1781
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData52.java
new file mode 100644
index 0000000000..f8ddb101e7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData53.java
new file mode 100644
index 0000000000..4cca243ea7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData54.java
new file mode 100644
index 0000000000..c4821dbc7f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData55.java
new file mode 100644
index 0000000000..83af96beeb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData56.java
new file mode 100644
index 0000000000..79eba4cc6a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData57.java
new file mode 100644
index 0000000000..b0cdb0dbf7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData58.java
new file mode 100644
index 0000000000..b4300c26f6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData59.java
new file mode 100644
index 0000000000..f596619a9b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData6.java
new file mode 100644
index 0000000000..22fb2264f1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData60.java
new file mode 100644
index 0000000000..dcabedfc3c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData61.java
new file mode 100644
index 0000000000..448f8babc9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData62.java
new file mode 100644
index 0000000000..07be830376
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData63.java
new file mode 100644
index 0000000000..15958f1743
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData64.java
new file mode 100644
index 0000000000..b71a9ee6d3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData65.java
new file mode 100644
index 0000000000..7aae41f8ce
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData66.java
new file mode 100644
index 0000000000..8852161ff5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData67.java
new file mode 100644
index 0000000000..df27fe15b8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData68.java
new file mode 100644
index 0000000000..b9d2a7ae8e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData69.java
new file mode 100644
index 0000000000..7108f589ab
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData7.java
new file mode 100644
index 0000000000..6342e4794f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData70.java
new file mode 100644
index 0000000000..1c09f44a95
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData71.java
new file mode 100644
index 0000000000..92ad7829aa
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData72.java
new file mode 100644
index 0000000000..dbcd6177da
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData73.java
new file mode 100644
index 0000000000..6dabab01fa
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData74.java
new file mode 100644
index 0000000000..0afaee53f1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData75.java
new file mode 100644
index 0000000000..2e37cc5c50
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData76.java
new file mode 100644
index 0000000000..d0c2f4b78f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData77.java
new file mode 100644
index 0000000000..1bac7f8ea0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData78.java
new file mode 100644
index 0000000000..ecb78e622c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData79.java
new file mode 100644
index 0000000000..f8141c4f16
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData8.java
new file mode 100644
index 0000000000..9fc921439f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData80.java
new file mode 100644
index 0000000000..15351b5536
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData81.java
new file mode 100644
index 0000000000..0d2d61b5bc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData82.java
new file mode 100644
index 0000000000..230c76949f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData83.java
new file mode 100644
index 0000000000..cda57ea42a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData84.java
new file mode 100644
index 0000000000..92debbdeed
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData85.java
new file mode 100644
index 0000000000..6e8aaa7603
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData86.java
new file mode 100644
index 0000000000..6c43f6cfa4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData87.java
new file mode 100644
index 0000000000..74fecda868
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData88.java
new file mode 100644
index 0000000000..88803e6671
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData89.java
new file mode 100644
index 0000000000..cf7498ae9e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData9.java
new file mode 100644
index 0000000000..e932f6cbea
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData90.java
new file mode 100644
index 0000000000..1c04044e5b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData91.java
new file mode 100644
index 0000000000..d444934d5d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData92.java
new file mode 100644
index 0000000000..c13c9dae69
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData93.java
new file mode 100644
index 0000000000..1b7b99e5c0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData94.java
new file mode 100644
index 0000000000..506a0a8aac
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData95.java
new file mode 100644
index 0000000000..a5b44dc997
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData96.java
new file mode 100644
index 0000000000..f3d296b284
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData97.java
new file mode 100644
index 0000000000..8aefcc66ef
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData98.java
new file mode 100644
index 0000000000..52c22294b4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData99.java
new file mode 100644
index 0000000000..f4663ec075
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package16/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package16;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData1.java
new file mode 100644
index 0000000000..bd64448c49
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData10.java
new file mode 100644
index 0000000000..1f4b2b07a0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData100.java
new file mode 100644
index 0000000000..c7bf671ac5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData11.java
new file mode 100644
index 0000000000..c6a6c653ed
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData12.java
new file mode 100644
index 0000000000..6e6e3c0c1e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData13.java
new file mode 100644
index 0000000000..31548f055d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData14.java
new file mode 100644
index 0000000000..0c5a63f543
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData15.java
new file mode 100644
index 0000000000..bda8be80c7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData16.java
new file mode 100644
index 0000000000..0addc7da1d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData17.java
new file mode 100644
index 0000000000..327ff58410
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData18.java
new file mode 100644
index 0000000000..181c892edb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData19.java
new file mode 100644
index 0000000000..493fbaf132
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData2.java
new file mode 100644
index 0000000000..dfb04bdf59
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData20.java
new file mode 100644
index 0000000000..3e35f8048e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData21.java
new file mode 100644
index 0000000000..a790bdb555
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData22.java
new file mode 100644
index 0000000000..3589087e35
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData23.java
new file mode 100644
index 0000000000..888480775a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData24.java
new file mode 100644
index 0000000000..5001ce19b5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData25.java
new file mode 100644
index 0000000000..9775462949
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData26.java
new file mode 100644
index 0000000000..09d7b15e58
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData27.java
new file mode 100644
index 0000000000..94ccc0603c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData28.java
new file mode 100644
index 0000000000..912acaafce
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData29.java
new file mode 100644
index 0000000000..178ec6c137
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData3.java
new file mode 100644
index 0000000000..1f1888dddf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData30.java
new file mode 100644
index 0000000000..3e910e4198
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData31.java
new file mode 100644
index 0000000000..7ede7190cb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData32.java
new file mode 100644
index 0000000000..c3fe0fcf46
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData33.java
new file mode 100644
index 0000000000..803c80ccc6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData34.java
new file mode 100644
index 0000000000..d1191389e1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData35.java
new file mode 100644
index 0000000000..9955204a7b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData36.java
new file mode 100644
index 0000000000..5303721f7e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData37.java
new file mode 100644
index 0000000000..cdede1eeaf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData38.java
new file mode 100644
index 0000000000..8c334a588e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData39.java
new file mode 100644
index 0000000000..d0e931cb60
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData4.java
new file mode 100644
index 0000000000..113c9d34d0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData40.java
new file mode 100644
index 0000000000..6040ed263c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData41.java
new file mode 100644
index 0000000000..e5888d2c8f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData42.java
new file mode 100644
index 0000000000..662e3eb464
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData43.java
new file mode 100644
index 0000000000..44237b6082
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData44.java
new file mode 100644
index 0000000000..9e1bc2e27e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData45.java
new file mode 100644
index 0000000000..8e21f0fc62
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData46.java
new file mode 100644
index 0000000000..cfd544bcf0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData47.java
new file mode 100644
index 0000000000..87f3377311
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData48.java
new file mode 100644
index 0000000000..7706f025a9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData49.java
new file mode 100644
index 0000000000..1dbfacdd15
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData5.java
new file mode 100644
index 0000000000..b5cd29da81
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData50.java
new file mode 100644
index 0000000000..e846fcebd6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData51.java
new file mode 100644
index 0000000000..fcea0110cd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData52.java
new file mode 100644
index 0000000000..1bdbf23bc4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData53.java
new file mode 100644
index 0000000000..cc3f06611d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData54.java
new file mode 100644
index 0000000000..f5d721aa11
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData55.java
new file mode 100644
index 0000000000..073477bc4b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData56.java
new file mode 100644
index 0000000000..fa585e3495
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData57.java
new file mode 100644
index 0000000000..23df648579
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData58.java
new file mode 100644
index 0000000000..cfddb60b7f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData59.java
new file mode 100644
index 0000000000..0f0699a483
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData6.java
new file mode 100644
index 0000000000..08462cc5c8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData60.java
new file mode 100644
index 0000000000..9ebd68b93b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData61.java
new file mode 100644
index 0000000000..3b54991de0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData62.java
new file mode 100644
index 0000000000..a76b31fa78
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData63.java
new file mode 100644
index 0000000000..7ba001ed24
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData64.java
new file mode 100644
index 0000000000..7c65ec01aa
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData65.java
new file mode 100644
index 0000000000..97a4f9f274
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData66.java
new file mode 100644
index 0000000000..b492645a54
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData67.java
new file mode 100644
index 0000000000..6d1666cb66
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData68.java
new file mode 100644
index 0000000000..f8d1c9eabb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData69.java
new file mode 100644
index 0000000000..bee24e2315
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData7.java
new file mode 100644
index 0000000000..ecd5dd2198
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData70.java
new file mode 100644
index 0000000000..b7d1171fda
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData71.java
new file mode 100644
index 0000000000..d62ffdf9da
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData72.java
new file mode 100644
index 0000000000..bd08982a80
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData73.java
new file mode 100644
index 0000000000..86c294c87a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData74.java
new file mode 100644
index 0000000000..0052780d6d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData75.java
new file mode 100644
index 0000000000..b4231eb918
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData76.java
new file mode 100644
index 0000000000..eb775ef2e1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData77.java
new file mode 100644
index 0000000000..5e78b9fd33
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData78.java
new file mode 100644
index 0000000000..b9d4115231
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData79.java
new file mode 100644
index 0000000000..9f94f24372
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData8.java
new file mode 100644
index 0000000000..d74ef64d6a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData80.java
new file mode 100644
index 0000000000..9e76df72dd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData81.java
new file mode 100644
index 0000000000..6e631f8abb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData82.java
new file mode 100644
index 0000000000..5a551ab6ee
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData83.java
new file mode 100644
index 0000000000..4c6023fe96
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData84.java
new file mode 100644
index 0000000000..1c352cae78
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData85.java
new file mode 100644
index 0000000000..2b6548cd2c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData86.java
new file mode 100644
index 0000000000..ebe025c439
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData87.java
new file mode 100644
index 0000000000..ed04ab7d82
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData88.java
new file mode 100644
index 0000000000..4c34984237
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData89.java
new file mode 100644
index 0000000000..51b8c60be1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData9.java
new file mode 100644
index 0000000000..3b94e9e696
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData90.java
new file mode 100644
index 0000000000..91b01df8e4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData91.java
new file mode 100644
index 0000000000..b18da28238
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData92.java
new file mode 100644
index 0000000000..0e7af7ba4b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData93.java
new file mode 100644
index 0000000000..eef578b6b6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData94.java
new file mode 100644
index 0000000000..8b714e76c8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData95.java
new file mode 100644
index 0000000000..c740faaf2c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData96.java
new file mode 100644
index 0000000000..eaea14553e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData97.java
new file mode 100644
index 0000000000..d7ca9ddf61
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData98.java
new file mode 100644
index 0000000000..c1ce65d930
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData99.java
new file mode 100644
index 0000000000..839a82e4c8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package17/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package17;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData1.java
new file mode 100644
index 0000000000..6fde99281d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData10.java
new file mode 100644
index 0000000000..90308378ab
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData100.java
new file mode 100644
index 0000000000..a63f2f8f5c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData11.java
new file mode 100644
index 0000000000..ada826072a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData12.java
new file mode 100644
index 0000000000..dff376876c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData13.java
new file mode 100644
index 0000000000..d86d183c8e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData14.java
new file mode 100644
index 0000000000..4799eefda4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData15.java
new file mode 100644
index 0000000000..8a8c703c9b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData16.java
new file mode 100644
index 0000000000..c83cdce459
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData17.java
new file mode 100644
index 0000000000..15e15e740d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData18.java
new file mode 100644
index 0000000000..396fb8a37b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData19.java
new file mode 100644
index 0000000000..7208766a88
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData2.java
new file mode 100644
index 0000000000..4cc7a34105
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData20.java
new file mode 100644
index 0000000000..4727b8224a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData21.java
new file mode 100644
index 0000000000..d898630488
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData22.java
new file mode 100644
index 0000000000..36ae4e636e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData23.java
new file mode 100644
index 0000000000..a735e5b65b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData24.java
new file mode 100644
index 0000000000..cb578f3fe7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData25.java
new file mode 100644
index 0000000000..463a79f1e1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData26.java
new file mode 100644
index 0000000000..bb2065420b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData27.java
new file mode 100644
index 0000000000..eac8dae6c5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData28.java
new file mode 100644
index 0000000000..df434b877d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData29.java
new file mode 100644
index 0000000000..dc9a1be77c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData3.java
new file mode 100644
index 0000000000..07a44a80c0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData30.java
new file mode 100644
index 0000000000..75ed6f253b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData31.java
new file mode 100644
index 0000000000..43f1032566
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData32.java
new file mode 100644
index 0000000000..a50044e70d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData33.java
new file mode 100644
index 0000000000..913cb38689
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData34.java
new file mode 100644
index 0000000000..b2993ccf80
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData35.java
new file mode 100644
index 0000000000..1a03415046
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData36.java
new file mode 100644
index 0000000000..469253e37a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData37.java
new file mode 100644
index 0000000000..a9550877fc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData38.java
new file mode 100644
index 0000000000..2c7772f898
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData39.java
new file mode 100644
index 0000000000..dfe8bf2f3f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData4.java
new file mode 100644
index 0000000000..b9898fb66e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData40.java
new file mode 100644
index 0000000000..a76e1e4cd4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData41.java
new file mode 100644
index 0000000000..aa707eface
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData42.java
new file mode 100644
index 0000000000..59f61cd898
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData43.java
new file mode 100644
index 0000000000..a63c8a60e6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData44.java
new file mode 100644
index 0000000000..ff04a01beb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData45.java
new file mode 100644
index 0000000000..edf76cbfc6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData46.java
new file mode 100644
index 0000000000..e5c2dc7153
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData47.java
new file mode 100644
index 0000000000..6d6c384742
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData48.java
new file mode 100644
index 0000000000..fe59895bb4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData49.java
new file mode 100644
index 0000000000..d5eca27a13
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData5.java
new file mode 100644
index 0000000000..ab32eb4c15
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData50.java
new file mode 100644
index 0000000000..dd10c1a3b8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData51.java
new file mode 100644
index 0000000000..34d8df9add
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData52.java
new file mode 100644
index 0000000000..bfd3fa3d87
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData53.java
new file mode 100644
index 0000000000..b3bbf2776e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData54.java
new file mode 100644
index 0000000000..9028f1b511
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData55.java
new file mode 100644
index 0000000000..4fe3ea3469
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData56.java
new file mode 100644
index 0000000000..102b134e32
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData57.java
new file mode 100644
index 0000000000..bf952bacbd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData58.java
new file mode 100644
index 0000000000..d5bb95eca8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData59.java
new file mode 100644
index 0000000000..5cecdea72a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData6.java
new file mode 100644
index 0000000000..d706b7cfb7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData60.java
new file mode 100644
index 0000000000..e301354985
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData61.java
new file mode 100644
index 0000000000..bf5f9e4fe0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData62.java
new file mode 100644
index 0000000000..635cb0b100
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData63.java
new file mode 100644
index 0000000000..0d1949de54
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData64.java
new file mode 100644
index 0000000000..013badaba4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData65.java
new file mode 100644
index 0000000000..e78f652d6f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData66.java
new file mode 100644
index 0000000000..17a140f2f3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData67.java
new file mode 100644
index 0000000000..a58d9a9a2e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData68.java
new file mode 100644
index 0000000000..e9e6893f8d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData69.java
new file mode 100644
index 0000000000..4a8dcdeb3d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData7.java
new file mode 100644
index 0000000000..70db9a9679
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData70.java
new file mode 100644
index 0000000000..4a6abc29c2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData71.java
new file mode 100644
index 0000000000..66e252f80b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData72.java
new file mode 100644
index 0000000000..80cb8535bd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData73.java
new file mode 100644
index 0000000000..7515b25287
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData74.java
new file mode 100644
index 0000000000..e19663eb1c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData75.java
new file mode 100644
index 0000000000..7ae68601df
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData76.java
new file mode 100644
index 0000000000..603eae5d38
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData77.java
new file mode 100644
index 0000000000..45ac510f4c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData78.java
new file mode 100644
index 0000000000..ef70c6939e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData79.java
new file mode 100644
index 0000000000..ed31a21183
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData8.java
new file mode 100644
index 0000000000..42120a0eac
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData80.java
new file mode 100644
index 0000000000..585c7baecc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData81.java
new file mode 100644
index 0000000000..9ef5b23cfd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData82.java
new file mode 100644
index 0000000000..893bb10989
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData83.java
new file mode 100644
index 0000000000..d38b2691d9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData84.java
new file mode 100644
index 0000000000..79013d25b1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData85.java
new file mode 100644
index 0000000000..8c973117df
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData86.java
new file mode 100644
index 0000000000..a7091c5de5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData87.java
new file mode 100644
index 0000000000..9afef2c63c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData88.java
new file mode 100644
index 0000000000..4b5f3a6144
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData89.java
new file mode 100644
index 0000000000..c6ea91229b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData9.java
new file mode 100644
index 0000000000..a21218975c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData90.java
new file mode 100644
index 0000000000..e85558cf18
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData91.java
new file mode 100644
index 0000000000..34638a6896
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData92.java
new file mode 100644
index 0000000000..ca90a7f445
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData93.java
new file mode 100644
index 0000000000..793ba64833
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData94.java
new file mode 100644
index 0000000000..ff87e240f2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData95.java
new file mode 100644
index 0000000000..13d33a61b5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData96.java
new file mode 100644
index 0000000000..81c5d97a6a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData97.java
new file mode 100644
index 0000000000..da600ed561
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData98.java
new file mode 100644
index 0000000000..28d981cb54
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData99.java
new file mode 100644
index 0000000000..311e51b0e7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package18/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package18;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData1.java
new file mode 100644
index 0000000000..50af916c74
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData10.java
new file mode 100644
index 0000000000..23befe5091
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData100.java
new file mode 100644
index 0000000000..6b7e06a3a3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData11.java
new file mode 100644
index 0000000000..08b33f0f36
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData12.java
new file mode 100644
index 0000000000..d5cda60508
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData13.java
new file mode 100644
index 0000000000..a0e9844059
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData14.java
new file mode 100644
index 0000000000..41529866ac
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData15.java
new file mode 100644
index 0000000000..859be566af
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData16.java
new file mode 100644
index 0000000000..fbb4cde816
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData17.java
new file mode 100644
index 0000000000..1f5f35f446
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData18.java
new file mode 100644
index 0000000000..7d81c4365b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData19.java
new file mode 100644
index 0000000000..9f21bebd55
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData2.java
new file mode 100644
index 0000000000..75a4a684d7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData20.java
new file mode 100644
index 0000000000..07818e9ca6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData21.java
new file mode 100644
index 0000000000..ab826f07ce
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData22.java
new file mode 100644
index 0000000000..52e3e7631d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData23.java
new file mode 100644
index 0000000000..4b73f4eb12
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData24.java
new file mode 100644
index 0000000000..ce3f4d88e7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData25.java
new file mode 100644
index 0000000000..124a0f2aa4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData26.java
new file mode 100644
index 0000000000..30e5770bc3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData27.java
new file mode 100644
index 0000000000..15e4618394
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData28.java
new file mode 100644
index 0000000000..ced72a3a37
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData29.java
new file mode 100644
index 0000000000..f12f626264
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData3.java
new file mode 100644
index 0000000000..7ca9ecd42f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData30.java
new file mode 100644
index 0000000000..446638c060
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData31.java
new file mode 100644
index 0000000000..ad5129bc9d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData32.java
new file mode 100644
index 0000000000..4bc4e8e9e8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData33.java
new file mode 100644
index 0000000000..7e0a1e8dc2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData34.java
new file mode 100644
index 0000000000..0ef31dbb6a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData35.java
new file mode 100644
index 0000000000..d9fac21d34
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData36.java
new file mode 100644
index 0000000000..5a6de136c5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData37.java
new file mode 100644
index 0000000000..2b8ecf8e68
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData38.java
new file mode 100644
index 0000000000..35b43db40c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData39.java
new file mode 100644
index 0000000000..ba76cf2fb6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData4.java
new file mode 100644
index 0000000000..80f69b506f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData40.java
new file mode 100644
index 0000000000..ae0dd72999
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData41.java
new file mode 100644
index 0000000000..1bce7aa63c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData42.java
new file mode 100644
index 0000000000..dc67a129eb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData43.java
new file mode 100644
index 0000000000..7cd21eea97
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData44.java
new file mode 100644
index 0000000000..a6dcfeeebf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData45.java
new file mode 100644
index 0000000000..ca94f433aa
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData46.java
new file mode 100644
index 0000000000..7c9add96b9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData47.java
new file mode 100644
index 0000000000..9f173b2598
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData48.java
new file mode 100644
index 0000000000..63540cc21e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData49.java
new file mode 100644
index 0000000000..e3ff5c6835
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData5.java
new file mode 100644
index 0000000000..61cb686560
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData50.java
new file mode 100644
index 0000000000..88e42a2721
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData51.java
new file mode 100644
index 0000000000..9dee556df8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData52.java
new file mode 100644
index 0000000000..0b48dac8f5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData53.java
new file mode 100644
index 0000000000..84d3c920e0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData54.java
new file mode 100644
index 0000000000..0c319d35c0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData55.java
new file mode 100644
index 0000000000..c7341308ff
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData56.java
new file mode 100644
index 0000000000..84ecad2652
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData57.java
new file mode 100644
index 0000000000..e8a782b906
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData58.java
new file mode 100644
index 0000000000..ab8638da7c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData59.java
new file mode 100644
index 0000000000..e6a78e936e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData6.java
new file mode 100644
index 0000000000..d0aee5fdae
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData60.java
new file mode 100644
index 0000000000..e3771779f8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData61.java
new file mode 100644
index 0000000000..2ae7e00ae1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData62.java
new file mode 100644
index 0000000000..d97421e973
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData63.java
new file mode 100644
index 0000000000..fef7fdb67c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData64.java
new file mode 100644
index 0000000000..a61ee488b5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData65.java
new file mode 100644
index 0000000000..63478fcce4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData66.java
new file mode 100644
index 0000000000..374a7ef571
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData67.java
new file mode 100644
index 0000000000..983fff95e6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData68.java
new file mode 100644
index 0000000000..f408f2eace
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData69.java
new file mode 100644
index 0000000000..d2fd60e032
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData7.java
new file mode 100644
index 0000000000..d40dcf74bc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData70.java
new file mode 100644
index 0000000000..8eba3d32fc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData71.java
new file mode 100644
index 0000000000..b9243f650f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData72.java
new file mode 100644
index 0000000000..8516d90c71
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData73.java
new file mode 100644
index 0000000000..a8967901d0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData74.java
new file mode 100644
index 0000000000..2126ca3058
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData75.java
new file mode 100644
index 0000000000..5a9ab93de9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData76.java
new file mode 100644
index 0000000000..4853e678c0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData77.java
new file mode 100644
index 0000000000..40668fef0e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData78.java
new file mode 100644
index 0000000000..9de0c91ef6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData79.java
new file mode 100644
index 0000000000..788223eff2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData8.java
new file mode 100644
index 0000000000..f0dea76fdb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData80.java
new file mode 100644
index 0000000000..878d6eb4fc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData81.java
new file mode 100644
index 0000000000..272359d366
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData82.java
new file mode 100644
index 0000000000..2c7ea138e3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData83.java
new file mode 100644
index 0000000000..f27f79a06c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData84.java
new file mode 100644
index 0000000000..bf3e82c500
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData85.java
new file mode 100644
index 0000000000..61d2d70c4a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData86.java
new file mode 100644
index 0000000000..779a39b98e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData87.java
new file mode 100644
index 0000000000..f2ac0b9fb1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData88.java
new file mode 100644
index 0000000000..72ec2abb65
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData89.java
new file mode 100644
index 0000000000..e95511cda3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData9.java
new file mode 100644
index 0000000000..35f8175e92
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData90.java
new file mode 100644
index 0000000000..99c10e4d63
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData91.java
new file mode 100644
index 0000000000..0497e31d67
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData92.java
new file mode 100644
index 0000000000..8b237069dd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData93.java
new file mode 100644
index 0000000000..75c82cf4e3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData94.java
new file mode 100644
index 0000000000..fdea85a0aa
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData95.java
new file mode 100644
index 0000000000..225f20d48a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData96.java
new file mode 100644
index 0000000000..8a85fcb590
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData97.java
new file mode 100644
index 0000000000..833c5825e2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData98.java
new file mode 100644
index 0000000000..8bb5bb60f1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData99.java
new file mode 100644
index 0000000000..08812b3680
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package19/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package19;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData1.java
new file mode 100644
index 0000000000..b7fe3a4cb9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData10.java
new file mode 100644
index 0000000000..f22492697e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData100.java
new file mode 100644
index 0000000000..350cb1bc82
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData11.java
new file mode 100644
index 0000000000..c6082d9cc3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData12.java
new file mode 100644
index 0000000000..15c5020d31
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData13.java
new file mode 100644
index 0000000000..44622c6723
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData14.java
new file mode 100644
index 0000000000..da3a50cb79
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData15.java
new file mode 100644
index 0000000000..d94a96acdf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData16.java
new file mode 100644
index 0000000000..3e2d66dd1c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData17.java
new file mode 100644
index 0000000000..f88ae2d9d5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData18.java
new file mode 100644
index 0000000000..da3a06aa0e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData19.java
new file mode 100644
index 0000000000..979694f8a2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData2.java
new file mode 100644
index 0000000000..15c55800fc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData20.java
new file mode 100644
index 0000000000..9dc5b1afed
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData21.java
new file mode 100644
index 0000000000..b7a502ebde
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData22.java
new file mode 100644
index 0000000000..09f712c27e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData23.java
new file mode 100644
index 0000000000..2a2f0e95c4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData24.java
new file mode 100644
index 0000000000..c1cd297bae
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData25.java
new file mode 100644
index 0000000000..cbb0e6ae20
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData26.java
new file mode 100644
index 0000000000..3296773663
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData27.java
new file mode 100644
index 0000000000..7fc411ddff
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData28.java
new file mode 100644
index 0000000000..03d7f8c744
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData29.java
new file mode 100644
index 0000000000..d8daf5763d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData3.java
new file mode 100644
index 0000000000..a341705ab6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData30.java
new file mode 100644
index 0000000000..755536d828
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData31.java
new file mode 100644
index 0000000000..5f68eb0e69
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData32.java
new file mode 100644
index 0000000000..b3a86c3936
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData33.java
new file mode 100644
index 0000000000..00a438c302
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData34.java
new file mode 100644
index 0000000000..0b14288c29
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData35.java
new file mode 100644
index 0000000000..61b5883658
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData36.java
new file mode 100644
index 0000000000..7025bb1a90
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData37.java
new file mode 100644
index 0000000000..82eb146109
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData38.java
new file mode 100644
index 0000000000..c1320b4992
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData39.java
new file mode 100644
index 0000000000..655efcc44f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData4.java
new file mode 100644
index 0000000000..cdd5e1bd0a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData40.java
new file mode 100644
index 0000000000..3bc88f2ed9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData41.java
new file mode 100644
index 0000000000..e6604410b4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData42.java
new file mode 100644
index 0000000000..b04f62ec51
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData43.java
new file mode 100644
index 0000000000..a668d8ff23
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData44.java
new file mode 100644
index 0000000000..05279beaef
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData45.java
new file mode 100644
index 0000000000..26373ef3a4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData46.java
new file mode 100644
index 0000000000..a0671f1e45
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData47.java
new file mode 100644
index 0000000000..5288f58c9e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData48.java
new file mode 100644
index 0000000000..0e6747b872
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData49.java
new file mode 100644
index 0000000000..8b9fbc89d4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData5.java
new file mode 100644
index 0000000000..a9bfba5f8f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData50.java
new file mode 100644
index 0000000000..d769209157
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData51.java
new file mode 100644
index 0000000000..cd43eb8c61
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData52.java
new file mode 100644
index 0000000000..006ae6a3f1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData53.java
new file mode 100644
index 0000000000..338a8505c7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData54.java
new file mode 100644
index 0000000000..040590a0f6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData55.java
new file mode 100644
index 0000000000..f2d0144dec
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData56.java
new file mode 100644
index 0000000000..8bceb336cd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData57.java
new file mode 100644
index 0000000000..8dde28d361
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData58.java
new file mode 100644
index 0000000000..7b304585b7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData59.java
new file mode 100644
index 0000000000..032eee794c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData6.java
new file mode 100644
index 0000000000..a4b9d32b14
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData60.java
new file mode 100644
index 0000000000..d65081382e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData61.java
new file mode 100644
index 0000000000..b5caf65ed0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData62.java
new file mode 100644
index 0000000000..8b0812ec4a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData63.java
new file mode 100644
index 0000000000..4555635881
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData64.java
new file mode 100644
index 0000000000..d41d962e9b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData65.java
new file mode 100644
index 0000000000..4ab9a8fdd9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData66.java
new file mode 100644
index 0000000000..ae8778dc6a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData67.java
new file mode 100644
index 0000000000..3d1707bc28
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData68.java
new file mode 100644
index 0000000000..901547885c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData69.java
new file mode 100644
index 0000000000..95220c621a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData7.java
new file mode 100644
index 0000000000..91773de5f1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData70.java
new file mode 100644
index 0000000000..1faeb714b5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData71.java
new file mode 100644
index 0000000000..dbe2015e08
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData72.java
new file mode 100644
index 0000000000..8fdd2603e1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData73.java
new file mode 100644
index 0000000000..60d72196c9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData74.java
new file mode 100644
index 0000000000..dc45bcfc45
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData75.java
new file mode 100644
index 0000000000..305261c0d6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData76.java
new file mode 100644
index 0000000000..8e50bba374
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData77.java
new file mode 100644
index 0000000000..6fa8854744
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData78.java
new file mode 100644
index 0000000000..21adcf425c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData79.java
new file mode 100644
index 0000000000..8de8ec2c94
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData8.java
new file mode 100644
index 0000000000..50e7ec601d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData80.java
new file mode 100644
index 0000000000..b40c9157df
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData81.java
new file mode 100644
index 0000000000..bba8dbfe28
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData82.java
new file mode 100644
index 0000000000..7bf31667db
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData83.java
new file mode 100644
index 0000000000..3cdc0b73bd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData84.java
new file mode 100644
index 0000000000..6e536687f2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData85.java
new file mode 100644
index 0000000000..f833bb3ef0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData86.java
new file mode 100644
index 0000000000..984ed05dec
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData87.java
new file mode 100644
index 0000000000..a64aa3b63c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData88.java
new file mode 100644
index 0000000000..daf00c5c97
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData89.java
new file mode 100644
index 0000000000..a7cd7b00d0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData9.java
new file mode 100644
index 0000000000..fd46654ce2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData90.java
new file mode 100644
index 0000000000..edd6942f20
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData91.java
new file mode 100644
index 0000000000..550ed0ed3f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData92.java
new file mode 100644
index 0000000000..c97922cc8e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData93.java
new file mode 100644
index 0000000000..36521eae1c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData94.java
new file mode 100644
index 0000000000..cb5c861fb6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData95.java
new file mode 100644
index 0000000000..1cd478cd99
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData96.java
new file mode 100644
index 0000000000..5aeda66b95
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData97.java
new file mode 100644
index 0000000000..8ee4bb756b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData98.java
new file mode 100644
index 0000000000..824a7bc97f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData99.java
new file mode 100644
index 0000000000..3feb1fb3b1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package2/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package2;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData1.java
new file mode 100644
index 0000000000..c185b6a707
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData10.java
new file mode 100644
index 0000000000..2d39def4ef
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData100.java
new file mode 100644
index 0000000000..4fcdbe6d8f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData11.java
new file mode 100644
index 0000000000..9eca77f6f2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData12.java
new file mode 100644
index 0000000000..0c593bb3b2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData13.java
new file mode 100644
index 0000000000..8381afb00a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData14.java
new file mode 100644
index 0000000000..56129048c6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData15.java
new file mode 100644
index 0000000000..a89d0d09ac
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData16.java
new file mode 100644
index 0000000000..b9588f0ed9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData17.java
new file mode 100644
index 0000000000..b19653d1e5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData18.java
new file mode 100644
index 0000000000..0da99e5fdb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData19.java
new file mode 100644
index 0000000000..b5bc883429
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData2.java
new file mode 100644
index 0000000000..cfc85c5623
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData20.java
new file mode 100644
index 0000000000..f864772f9e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData21.java
new file mode 100644
index 0000000000..3c25505df2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData22.java
new file mode 100644
index 0000000000..f7bd1b6015
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData23.java
new file mode 100644
index 0000000000..73b820e415
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData24.java
new file mode 100644
index 0000000000..f3712df7e4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData25.java
new file mode 100644
index 0000000000..37eb803441
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData26.java
new file mode 100644
index 0000000000..8ab31495b9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData27.java
new file mode 100644
index 0000000000..bd33bca46e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData28.java
new file mode 100644
index 0000000000..ef4ad3b84e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData29.java
new file mode 100644
index 0000000000..de5afa85de
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData3.java
new file mode 100644
index 0000000000..34eaf0dce9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData30.java
new file mode 100644
index 0000000000..72826019ad
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData31.java
new file mode 100644
index 0000000000..08be727f62
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData32.java
new file mode 100644
index 0000000000..332122b31d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData33.java
new file mode 100644
index 0000000000..3b051e92cc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData34.java
new file mode 100644
index 0000000000..774df1b48b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData35.java
new file mode 100644
index 0000000000..dea7a14bfb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData36.java
new file mode 100644
index 0000000000..5e7e984ff2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData37.java
new file mode 100644
index 0000000000..c821c7e56a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData38.java
new file mode 100644
index 0000000000..ce39957f70
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData39.java
new file mode 100644
index 0000000000..19349694fd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData4.java
new file mode 100644
index 0000000000..02149816f0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData40.java
new file mode 100644
index 0000000000..d01cd4ea14
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData41.java
new file mode 100644
index 0000000000..3b6460c86d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData42.java
new file mode 100644
index 0000000000..165540ff88
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData43.java
new file mode 100644
index 0000000000..f43dffa132
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData44.java
new file mode 100644
index 0000000000..4356974042
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData45.java
new file mode 100644
index 0000000000..08e5cd4c2d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData46.java
new file mode 100644
index 0000000000..a550da0ac4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData47.java
new file mode 100644
index 0000000000..5034825b1f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData48.java
new file mode 100644
index 0000000000..205d4fa77f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData49.java
new file mode 100644
index 0000000000..f81bf5091c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData5.java
new file mode 100644
index 0000000000..81e5a6cf04
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData50.java
new file mode 100644
index 0000000000..9801de6736
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData51.java
new file mode 100644
index 0000000000..077f93717d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData52.java
new file mode 100644
index 0000000000..bd3623ee0e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData53.java
new file mode 100644
index 0000000000..4df91ce7c2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData54.java
new file mode 100644
index 0000000000..73aeea805f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData55.java
new file mode 100644
index 0000000000..b31d6487f6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData56.java
new file mode 100644
index 0000000000..081be0946b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData57.java
new file mode 100644
index 0000000000..2562b9d33a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData58.java
new file mode 100644
index 0000000000..6e971521eb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData59.java
new file mode 100644
index 0000000000..aa3f67b353
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData6.java
new file mode 100644
index 0000000000..217dfe4071
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData60.java
new file mode 100644
index 0000000000..7d2120fc53
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData61.java
new file mode 100644
index 0000000000..d1a189f998
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData62.java
new file mode 100644
index 0000000000..ebc66859dc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData63.java
new file mode 100644
index 0000000000..fc55b6455d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData64.java
new file mode 100644
index 0000000000..0bf2688818
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData65.java
new file mode 100644
index 0000000000..a5705ffca3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData66.java
new file mode 100644
index 0000000000..ca8891992a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData67.java
new file mode 100644
index 0000000000..327cf1831e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData68.java
new file mode 100644
index 0000000000..9cceb19961
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData69.java
new file mode 100644
index 0000000000..be6ff15c93
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData7.java
new file mode 100644
index 0000000000..5cb154cac3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData70.java
new file mode 100644
index 0000000000..076c704b68
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData71.java
new file mode 100644
index 0000000000..c4edad0e3c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData72.java
new file mode 100644
index 0000000000..267164a61a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData73.java
new file mode 100644
index 0000000000..7fc795262a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData74.java
new file mode 100644
index 0000000000..2da97b538d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData75.java
new file mode 100644
index 0000000000..2c8b00e1ed
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData76.java
new file mode 100644
index 0000000000..0bfb532c31
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData77.java
new file mode 100644
index 0000000000..44e69ba83a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData78.java
new file mode 100644
index 0000000000..2bda5307d1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData79.java
new file mode 100644
index 0000000000..ab73c85244
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData8.java
new file mode 100644
index 0000000000..cf8fee5a5e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData80.java
new file mode 100644
index 0000000000..1b8cb651e3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData81.java
new file mode 100644
index 0000000000..4ea9e312b8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData82.java
new file mode 100644
index 0000000000..8a8417f287
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData83.java
new file mode 100644
index 0000000000..444db02e80
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData84.java
new file mode 100644
index 0000000000..43e7d353fd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData85.java
new file mode 100644
index 0000000000..cc08165fc2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData86.java
new file mode 100644
index 0000000000..919c02c030
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData87.java
new file mode 100644
index 0000000000..b5059e289e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData88.java
new file mode 100644
index 0000000000..f91c1a08a0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData89.java
new file mode 100644
index 0000000000..42eb6c1b6c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData9.java
new file mode 100644
index 0000000000..0f1de5bfe0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData90.java
new file mode 100644
index 0000000000..183fd43860
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData91.java
new file mode 100644
index 0000000000..5d13f96a6e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData92.java
new file mode 100644
index 0000000000..fb5a7e4866
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData93.java
new file mode 100644
index 0000000000..9f5b138b55
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData94.java
new file mode 100644
index 0000000000..e146ca624d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData95.java
new file mode 100644
index 0000000000..3c28fac91c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData96.java
new file mode 100644
index 0000000000..769bd4e32d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData97.java
new file mode 100644
index 0000000000..4eeb573af6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData98.java
new file mode 100644
index 0000000000..cb056abed3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData99.java
new file mode 100644
index 0000000000..f8c7ca7836
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package20/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package20;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData1.java
new file mode 100644
index 0000000000..1cfde98a7d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData10.java
new file mode 100644
index 0000000000..f504ac5792
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData100.java
new file mode 100644
index 0000000000..25e54988cd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData11.java
new file mode 100644
index 0000000000..2f5d02f451
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData12.java
new file mode 100644
index 0000000000..8d515a2571
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData13.java
new file mode 100644
index 0000000000..a6d3b40fdd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData14.java
new file mode 100644
index 0000000000..3b56b4812f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData15.java
new file mode 100644
index 0000000000..327040632a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData16.java
new file mode 100644
index 0000000000..f1dad2e3cb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData17.java
new file mode 100644
index 0000000000..b6df6751d2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData18.java
new file mode 100644
index 0000000000..14d329b3b0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData19.java
new file mode 100644
index 0000000000..be3311822a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData2.java
new file mode 100644
index 0000000000..245d7d0857
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData20.java
new file mode 100644
index 0000000000..8817ec75c1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData21.java
new file mode 100644
index 0000000000..d9e1c80284
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData22.java
new file mode 100644
index 0000000000..33fd87d205
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData23.java
new file mode 100644
index 0000000000..ac73036f0a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData24.java
new file mode 100644
index 0000000000..f63670cf5f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData25.java
new file mode 100644
index 0000000000..98d48facf3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData26.java
new file mode 100644
index 0000000000..1e0c776ca4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData27.java
new file mode 100644
index 0000000000..c7263c1c14
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData28.java
new file mode 100644
index 0000000000..56744ffb71
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData29.java
new file mode 100644
index 0000000000..2b076116a8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData3.java
new file mode 100644
index 0000000000..7eb3ebcd87
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData30.java
new file mode 100644
index 0000000000..3113587152
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData31.java
new file mode 100644
index 0000000000..a5d13ca31c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData32.java
new file mode 100644
index 0000000000..d2f7b27dc3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData33.java
new file mode 100644
index 0000000000..d47535febc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData34.java
new file mode 100644
index 0000000000..55f97cf7e8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData35.java
new file mode 100644
index 0000000000..31f8971a86
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData36.java
new file mode 100644
index 0000000000..c966c52eba
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData37.java
new file mode 100644
index 0000000000..da67b01545
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData38.java
new file mode 100644
index 0000000000..34e6db14bd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData39.java
new file mode 100644
index 0000000000..414482f198
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData4.java
new file mode 100644
index 0000000000..a4d1a269f0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData40.java
new file mode 100644
index 0000000000..9147143c59
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData41.java
new file mode 100644
index 0000000000..291f351aa1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData42.java
new file mode 100644
index 0000000000..a7d048a321
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData43.java
new file mode 100644
index 0000000000..048ed87ced
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData44.java
new file mode 100644
index 0000000000..3ea0636c32
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData45.java
new file mode 100644
index 0000000000..85f7d7081f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData46.java
new file mode 100644
index 0000000000..e5a4571eb0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData47.java
new file mode 100644
index 0000000000..fd38eac462
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData48.java
new file mode 100644
index 0000000000..e590acf6ca
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData49.java
new file mode 100644
index 0000000000..b67f38e89a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData5.java
new file mode 100644
index 0000000000..f61007bf7f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData50.java
new file mode 100644
index 0000000000..e98dd95872
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData51.java
new file mode 100644
index 0000000000..f3b78d3855
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData52.java
new file mode 100644
index 0000000000..c4ffcbed04
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData53.java
new file mode 100644
index 0000000000..806d6a22e3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData54.java
new file mode 100644
index 0000000000..a6c4f73e39
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData55.java
new file mode 100644
index 0000000000..7a28dfe7a2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData56.java
new file mode 100644
index 0000000000..16d0928569
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData57.java
new file mode 100644
index 0000000000..0572b2cce9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData58.java
new file mode 100644
index 0000000000..a8d6db7fc3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData59.java
new file mode 100644
index 0000000000..120d06c89b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData6.java
new file mode 100644
index 0000000000..850bd2775c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData60.java
new file mode 100644
index 0000000000..7dd49b3ec2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData61.java
new file mode 100644
index 0000000000..acab359199
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData62.java
new file mode 100644
index 0000000000..fa37220cd5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData63.java
new file mode 100644
index 0000000000..1a880b6826
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData64.java
new file mode 100644
index 0000000000..d21e2f03db
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData65.java
new file mode 100644
index 0000000000..2eab45e98a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData66.java
new file mode 100644
index 0000000000..a8d7885cac
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData67.java
new file mode 100644
index 0000000000..daf36986bb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData68.java
new file mode 100644
index 0000000000..03d0994151
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData69.java
new file mode 100644
index 0000000000..60df7508c3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData7.java
new file mode 100644
index 0000000000..ce59a21fbc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData70.java
new file mode 100644
index 0000000000..abb26cc3b9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData71.java
new file mode 100644
index 0000000000..242026254d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData72.java
new file mode 100644
index 0000000000..73022385e7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData73.java
new file mode 100644
index 0000000000..41680827f4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData74.java
new file mode 100644
index 0000000000..e7258e9bb3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData75.java
new file mode 100644
index 0000000000..a2e3e74d20
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData76.java
new file mode 100644
index 0000000000..a9618fc5de
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData77.java
new file mode 100644
index 0000000000..72712213a2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData78.java
new file mode 100644
index 0000000000..f8fc086d30
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData79.java
new file mode 100644
index 0000000000..f4966d0b7a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData8.java
new file mode 100644
index 0000000000..344379be95
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData80.java
new file mode 100644
index 0000000000..a04cbfae2a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData81.java
new file mode 100644
index 0000000000..c069493c46
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData82.java
new file mode 100644
index 0000000000..1daef6dc67
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData83.java
new file mode 100644
index 0000000000..936342c1bf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData84.java
new file mode 100644
index 0000000000..a49300b018
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData85.java
new file mode 100644
index 0000000000..9c5b462eaa
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData86.java
new file mode 100644
index 0000000000..995b621071
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData87.java
new file mode 100644
index 0000000000..b764f82e2c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData88.java
new file mode 100644
index 0000000000..57e78e169e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData89.java
new file mode 100644
index 0000000000..89ea230c56
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData9.java
new file mode 100644
index 0000000000..441b3456a4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData90.java
new file mode 100644
index 0000000000..3d4f9dbc8c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData91.java
new file mode 100644
index 0000000000..8241e4c66e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData92.java
new file mode 100644
index 0000000000..0e4fd03337
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData93.java
new file mode 100644
index 0000000000..9eb411c8a3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData94.java
new file mode 100644
index 0000000000..44a118837c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData95.java
new file mode 100644
index 0000000000..b3f8aeb84b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData96.java
new file mode 100644
index 0000000000..fc37e876b6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData97.java
new file mode 100644
index 0000000000..58f560da97
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData98.java
new file mode 100644
index 0000000000..19fa37e4f7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData99.java
new file mode 100644
index 0000000000..6af0a63be8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package21/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package21;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData1.java
new file mode 100644
index 0000000000..490b9c3f02
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData10.java
new file mode 100644
index 0000000000..3039fc3f61
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData100.java
new file mode 100644
index 0000000000..31126d115c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData11.java
new file mode 100644
index 0000000000..fc1ec6eb9f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData12.java
new file mode 100644
index 0000000000..6faa7e8ffd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData13.java
new file mode 100644
index 0000000000..1fb56c90f9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData14.java
new file mode 100644
index 0000000000..234edfe813
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData15.java
new file mode 100644
index 0000000000..0dcb14f0a5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData16.java
new file mode 100644
index 0000000000..cf007c4683
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData17.java
new file mode 100644
index 0000000000..bb1a7c443d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData18.java
new file mode 100644
index 0000000000..dfaa70d0d6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData19.java
new file mode 100644
index 0000000000..d25b2c3d32
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData2.java
new file mode 100644
index 0000000000..58e0e55438
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData20.java
new file mode 100644
index 0000000000..45cc9fe18a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData21.java
new file mode 100644
index 0000000000..329b948899
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData22.java
new file mode 100644
index 0000000000..75394b8d10
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData23.java
new file mode 100644
index 0000000000..0028b73223
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData24.java
new file mode 100644
index 0000000000..1c8b8a807c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData25.java
new file mode 100644
index 0000000000..bccae6d44a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData26.java
new file mode 100644
index 0000000000..279df6ab28
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData27.java
new file mode 100644
index 0000000000..16e4696f74
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData28.java
new file mode 100644
index 0000000000..e42a38e9ac
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData29.java
new file mode 100644
index 0000000000..d11ccec6a9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData3.java
new file mode 100644
index 0000000000..a7eb4936cd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData30.java
new file mode 100644
index 0000000000..9df4509385
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData31.java
new file mode 100644
index 0000000000..506e46af6d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData32.java
new file mode 100644
index 0000000000..a1282aae5f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData33.java
new file mode 100644
index 0000000000..b9c1ed5e6a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData34.java
new file mode 100644
index 0000000000..4a0ba78a17
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData35.java
new file mode 100644
index 0000000000..56f62ed7e6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData36.java
new file mode 100644
index 0000000000..a15a6286c9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData37.java
new file mode 100644
index 0000000000..0ccd712da2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData38.java
new file mode 100644
index 0000000000..8e52a10753
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData39.java
new file mode 100644
index 0000000000..67f10cebed
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData4.java
new file mode 100644
index 0000000000..5fe84900e3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData40.java
new file mode 100644
index 0000000000..8c1d0b68f8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData41.java
new file mode 100644
index 0000000000..c9a650f6ff
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData42.java
new file mode 100644
index 0000000000..002ce10633
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData43.java
new file mode 100644
index 0000000000..83583179e6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData44.java
new file mode 100644
index 0000000000..2e8976ceb4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData45.java
new file mode 100644
index 0000000000..f71defbff0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData46.java
new file mode 100644
index 0000000000..25f4e924d4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData47.java
new file mode 100644
index 0000000000..0a03e6244d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData48.java
new file mode 100644
index 0000000000..b080f685d2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData49.java
new file mode 100644
index 0000000000..750f5b96c3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData5.java
new file mode 100644
index 0000000000..416f064449
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData50.java
new file mode 100644
index 0000000000..0aa3e9766a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData51.java
new file mode 100644
index 0000000000..d97866ba38
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData52.java
new file mode 100644
index 0000000000..0b3abf1b3b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData53.java
new file mode 100644
index 0000000000..60763c28b8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData54.java
new file mode 100644
index 0000000000..73b0f61328
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData55.java
new file mode 100644
index 0000000000..07ae8bd4fa
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData56.java
new file mode 100644
index 0000000000..27c22d38c3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData57.java
new file mode 100644
index 0000000000..9a77c0f376
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData58.java
new file mode 100644
index 0000000000..d6e59b4943
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData59.java
new file mode 100644
index 0000000000..a26d73610d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData6.java
new file mode 100644
index 0000000000..cf0feadfb0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData60.java
new file mode 100644
index 0000000000..cd3a10a11f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData61.java
new file mode 100644
index 0000000000..16581378ec
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData62.java
new file mode 100644
index 0000000000..dcd7862d88
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData63.java
new file mode 100644
index 0000000000..f9c5b3eb43
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData64.java
new file mode 100644
index 0000000000..1207f38fc4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData65.java
new file mode 100644
index 0000000000..52b0620192
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData66.java
new file mode 100644
index 0000000000..b189bddc07
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData67.java
new file mode 100644
index 0000000000..0df20543fd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData68.java
new file mode 100644
index 0000000000..0bc7997e94
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData69.java
new file mode 100644
index 0000000000..d8d19f8ead
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData7.java
new file mode 100644
index 0000000000..4be8fa6920
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData70.java
new file mode 100644
index 0000000000..8134c9f243
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData71.java
new file mode 100644
index 0000000000..7a134b50a7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData72.java
new file mode 100644
index 0000000000..2328a28750
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData73.java
new file mode 100644
index 0000000000..45720f9a6d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData74.java
new file mode 100644
index 0000000000..fcdef24828
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData75.java
new file mode 100644
index 0000000000..fbfb17ff67
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData76.java
new file mode 100644
index 0000000000..25cc8f48f4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData77.java
new file mode 100644
index 0000000000..35747bf874
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData78.java
new file mode 100644
index 0000000000..339c66fa31
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData79.java
new file mode 100644
index 0000000000..fef98931bf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData8.java
new file mode 100644
index 0000000000..d18ee34ef9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData80.java
new file mode 100644
index 0000000000..11c49e8316
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData81.java
new file mode 100644
index 0000000000..1fe804674b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData82.java
new file mode 100644
index 0000000000..b72060820d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData83.java
new file mode 100644
index 0000000000..ac3099dd6e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData84.java
new file mode 100644
index 0000000000..5b203a9688
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData85.java
new file mode 100644
index 0000000000..0c1d295a26
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData86.java
new file mode 100644
index 0000000000..91c0a6f4aa
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData87.java
new file mode 100644
index 0000000000..9cc69f145f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData88.java
new file mode 100644
index 0000000000..6df1f54ed0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData89.java
new file mode 100644
index 0000000000..c48aa4dd9f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData9.java
new file mode 100644
index 0000000000..64dd7a6f58
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData90.java
new file mode 100644
index 0000000000..7fd4691a49
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData91.java
new file mode 100644
index 0000000000..22937505da
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData92.java
new file mode 100644
index 0000000000..4fa36715e9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData93.java
new file mode 100644
index 0000000000..2eace73a7f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData94.java
new file mode 100644
index 0000000000..803212146f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData95.java
new file mode 100644
index 0000000000..af943b965e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData96.java
new file mode 100644
index 0000000000..1e41c37186
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData97.java
new file mode 100644
index 0000000000..b51239a8af
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData98.java
new file mode 100644
index 0000000000..f94064b058
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData99.java
new file mode 100644
index 0000000000..8c870e10ac
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package3/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package3;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData1.java
new file mode 100644
index 0000000000..9333e5a465
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData10.java
new file mode 100644
index 0000000000..328624367e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData100.java
new file mode 100644
index 0000000000..05d75761f5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData11.java
new file mode 100644
index 0000000000..3a38d8309a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData12.java
new file mode 100644
index 0000000000..75e0aec877
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData13.java
new file mode 100644
index 0000000000..5e66da29e9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData14.java
new file mode 100644
index 0000000000..87ccabb84a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData15.java
new file mode 100644
index 0000000000..dbac97a8fe
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData16.java
new file mode 100644
index 0000000000..5c320fd99a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData17.java
new file mode 100644
index 0000000000..71c923fef5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData18.java
new file mode 100644
index 0000000000..94fa199eb3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData19.java
new file mode 100644
index 0000000000..0f9db37272
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData2.java
new file mode 100644
index 0000000000..91bac58ebb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData20.java
new file mode 100644
index 0000000000..b2bbdf7617
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData21.java
new file mode 100644
index 0000000000..55714b0b3b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData22.java
new file mode 100644
index 0000000000..cd50eec9e2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData23.java
new file mode 100644
index 0000000000..15cb20fc81
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData24.java
new file mode 100644
index 0000000000..d4968dfb32
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData25.java
new file mode 100644
index 0000000000..b38c5fb382
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData26.java
new file mode 100644
index 0000000000..3600f55897
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData27.java
new file mode 100644
index 0000000000..d453537287
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData28.java
new file mode 100644
index 0000000000..4892068e61
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData29.java
new file mode 100644
index 0000000000..ae385f7751
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData3.java
new file mode 100644
index 0000000000..a6f78b27df
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData30.java
new file mode 100644
index 0000000000..6b56f50e6f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData31.java
new file mode 100644
index 0000000000..4b1e1f6649
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData32.java
new file mode 100644
index 0000000000..0fd4962dd2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData33.java
new file mode 100644
index 0000000000..4979b8e110
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData34.java
new file mode 100644
index 0000000000..07cd889c97
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData35.java
new file mode 100644
index 0000000000..d0cc950446
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData36.java
new file mode 100644
index 0000000000..69003dafdf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData37.java
new file mode 100644
index 0000000000..3c179a0e8d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData38.java
new file mode 100644
index 0000000000..d05399c9c5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData39.java
new file mode 100644
index 0000000000..a3425c0f6d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData4.java
new file mode 100644
index 0000000000..f5178c1ff0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData40.java
new file mode 100644
index 0000000000..f600674de4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData41.java
new file mode 100644
index 0000000000..e4ec1e9857
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData42.java
new file mode 100644
index 0000000000..a7d697f1f2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData43.java
new file mode 100644
index 0000000000..51b6d7b2f8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData44.java
new file mode 100644
index 0000000000..d1b0d23d67
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData45.java
new file mode 100644
index 0000000000..d95cc6479e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData46.java
new file mode 100644
index 0000000000..8f2f1c4c13
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData47.java
new file mode 100644
index 0000000000..6218cd176e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData48.java
new file mode 100644
index 0000000000..8964e14196
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData49.java
new file mode 100644
index 0000000000..010af647f0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData5.java
new file mode 100644
index 0000000000..3df5c7bc45
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData50.java
new file mode 100644
index 0000000000..04cfc4448f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData51.java
new file mode 100644
index 0000000000..d3b642f69d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData52.java
new file mode 100644
index 0000000000..5aba321c53
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData53.java
new file mode 100644
index 0000000000..4667e17fd0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData54.java
new file mode 100644
index 0000000000..c84cf28eee
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData55.java
new file mode 100644
index 0000000000..3f7db0b468
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData56.java
new file mode 100644
index 0000000000..78381daf0e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData57.java
new file mode 100644
index 0000000000..bc20f2d414
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData58.java
new file mode 100644
index 0000000000..d4dcae588f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData59.java
new file mode 100644
index 0000000000..7621b3f527
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData6.java
new file mode 100644
index 0000000000..f78fcb13fe
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData60.java
new file mode 100644
index 0000000000..4a64cd353a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData61.java
new file mode 100644
index 0000000000..cd291e23d0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData62.java
new file mode 100644
index 0000000000..f6767e80ab
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData63.java
new file mode 100644
index 0000000000..4e679d6ac3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData64.java
new file mode 100644
index 0000000000..a77be8d538
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData65.java
new file mode 100644
index 0000000000..43f1219dbb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData66.java
new file mode 100644
index 0000000000..751f2b21cb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData67.java
new file mode 100644
index 0000000000..a50e930582
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData68.java
new file mode 100644
index 0000000000..40f7c59ce7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData69.java
new file mode 100644
index 0000000000..8a25c6993b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData7.java
new file mode 100644
index 0000000000..89bd192bb6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData70.java
new file mode 100644
index 0000000000..9e72d64856
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData71.java
new file mode 100644
index 0000000000..2714d7b4ce
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData72.java
new file mode 100644
index 0000000000..508308ae93
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData73.java
new file mode 100644
index 0000000000..75f93270ee
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData74.java
new file mode 100644
index 0000000000..208bcce764
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData75.java
new file mode 100644
index 0000000000..776498284a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData76.java
new file mode 100644
index 0000000000..bdc000b378
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData77.java
new file mode 100644
index 0000000000..6873548bee
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData78.java
new file mode 100644
index 0000000000..2a1e138229
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData79.java
new file mode 100644
index 0000000000..5652f1e004
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData8.java
new file mode 100644
index 0000000000..48cdf41b83
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData80.java
new file mode 100644
index 0000000000..fb0045960e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData81.java
new file mode 100644
index 0000000000..6f9c81bec2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData82.java
new file mode 100644
index 0000000000..2c11c2798c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData83.java
new file mode 100644
index 0000000000..b5de777517
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData84.java
new file mode 100644
index 0000000000..33ef1b73bb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData85.java
new file mode 100644
index 0000000000..e688af6281
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData86.java
new file mode 100644
index 0000000000..6a3371e5a5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData87.java
new file mode 100644
index 0000000000..d4db4f383c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData88.java
new file mode 100644
index 0000000000..36e1812d02
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData89.java
new file mode 100644
index 0000000000..9559b028de
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData9.java
new file mode 100644
index 0000000000..d7e6d09c9f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData90.java
new file mode 100644
index 0000000000..729df0ea08
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData91.java
new file mode 100644
index 0000000000..0c0693f746
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData92.java
new file mode 100644
index 0000000000..8596aa0413
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData93.java
new file mode 100644
index 0000000000..920fb717d4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData94.java
new file mode 100644
index 0000000000..2ef99b0b72
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData95.java
new file mode 100644
index 0000000000..468d599d3e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData96.java
new file mode 100644
index 0000000000..81699ac9af
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData97.java
new file mode 100644
index 0000000000..54849b359e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData98.java
new file mode 100644
index 0000000000..0b4b7fe0a3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData99.java
new file mode 100644
index 0000000000..15200b020c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package4/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package4;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData1.java
new file mode 100644
index 0000000000..99de2cead9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData10.java
new file mode 100644
index 0000000000..8a7be18a63
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData100.java
new file mode 100644
index 0000000000..53ef7c35e7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData11.java
new file mode 100644
index 0000000000..d2efa1527c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData12.java
new file mode 100644
index 0000000000..5de0f9bb77
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData13.java
new file mode 100644
index 0000000000..e77285ad8c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData14.java
new file mode 100644
index 0000000000..c51478a7f0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData15.java
new file mode 100644
index 0000000000..68cf8b6b21
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData16.java
new file mode 100644
index 0000000000..642f931e59
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData17.java
new file mode 100644
index 0000000000..aec4c9cabd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData18.java
new file mode 100644
index 0000000000..0c36de8e04
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData19.java
new file mode 100644
index 0000000000..0f7ed30904
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData2.java
new file mode 100644
index 0000000000..5b0bed5c61
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData20.java
new file mode 100644
index 0000000000..2932917ad7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData21.java
new file mode 100644
index 0000000000..0ed512ca53
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData22.java
new file mode 100644
index 0000000000..9c67aebabc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData23.java
new file mode 100644
index 0000000000..f923d3e423
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData24.java
new file mode 100644
index 0000000000..74fb52c8bb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData25.java
new file mode 100644
index 0000000000..11144d1c9e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData26.java
new file mode 100644
index 0000000000..ecfc43a057
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData27.java
new file mode 100644
index 0000000000..d805052574
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData28.java
new file mode 100644
index 0000000000..51232c0845
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData29.java
new file mode 100644
index 0000000000..0832e15feb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData3.java
new file mode 100644
index 0000000000..5d67ac601e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData30.java
new file mode 100644
index 0000000000..ef432572b6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData31.java
new file mode 100644
index 0000000000..fe1823a75e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData32.java
new file mode 100644
index 0000000000..7260e4a8df
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData33.java
new file mode 100644
index 0000000000..5d84c4c76e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData34.java
new file mode 100644
index 0000000000..94df4e8b0a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData35.java
new file mode 100644
index 0000000000..0b12517177
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData36.java
new file mode 100644
index 0000000000..f9bbf26e7e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData37.java
new file mode 100644
index 0000000000..27fc80831e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData38.java
new file mode 100644
index 0000000000..c23b9dd947
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData39.java
new file mode 100644
index 0000000000..f11f244014
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData4.java
new file mode 100644
index 0000000000..f6022fd981
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData40.java
new file mode 100644
index 0000000000..1836a3367f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData41.java
new file mode 100644
index 0000000000..bb6b762f1a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData42.java
new file mode 100644
index 0000000000..a91bef63dd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData43.java
new file mode 100644
index 0000000000..7811a530ce
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData44.java
new file mode 100644
index 0000000000..25d2fc82ad
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData45.java
new file mode 100644
index 0000000000..9c8937aeb2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData46.java
new file mode 100644
index 0000000000..b440781743
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData47.java
new file mode 100644
index 0000000000..c558b86239
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData48.java
new file mode 100644
index 0000000000..f88c5c4976
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData49.java
new file mode 100644
index 0000000000..2781297f2c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData5.java
new file mode 100644
index 0000000000..c49715e8d9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData50.java
new file mode 100644
index 0000000000..a63917564b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData51.java
new file mode 100644
index 0000000000..8950077f42
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData52.java
new file mode 100644
index 0000000000..6fd1b1dbc7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData53.java
new file mode 100644
index 0000000000..8889518d8b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData54.java
new file mode 100644
index 0000000000..7252906f71
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData55.java
new file mode 100644
index 0000000000..49cdfc749e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData56.java
new file mode 100644
index 0000000000..db2412342e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData57.java
new file mode 100644
index 0000000000..5b45be9faa
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData58.java
new file mode 100644
index 0000000000..435da18df4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData59.java
new file mode 100644
index 0000000000..f58cc2d08d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData6.java
new file mode 100644
index 0000000000..ed819202cc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData60.java
new file mode 100644
index 0000000000..47bdd734bf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData61.java
new file mode 100644
index 0000000000..d6c684d848
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData62.java
new file mode 100644
index 0000000000..37b5f60b35
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData63.java
new file mode 100644
index 0000000000..59b6b8c781
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData64.java
new file mode 100644
index 0000000000..5d2f9209dd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData65.java
new file mode 100644
index 0000000000..5a8cdfebb2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData66.java
new file mode 100644
index 0000000000..d1e773651d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData67.java
new file mode 100644
index 0000000000..fd2b4fadfc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData68.java
new file mode 100644
index 0000000000..ff8aed52d2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData69.java
new file mode 100644
index 0000000000..59205dd376
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData7.java
new file mode 100644
index 0000000000..36ff190273
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData70.java
new file mode 100644
index 0000000000..3b218c9b45
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData71.java
new file mode 100644
index 0000000000..2ceba6682c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData72.java
new file mode 100644
index 0000000000..f509fc01a6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData73.java
new file mode 100644
index 0000000000..e23687fad4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData74.java
new file mode 100644
index 0000000000..e623e77a52
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData75.java
new file mode 100644
index 0000000000..d818d30079
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData76.java
new file mode 100644
index 0000000000..9782ee4b46
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData77.java
new file mode 100644
index 0000000000..a8120de483
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData78.java
new file mode 100644
index 0000000000..ef0bebd166
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData79.java
new file mode 100644
index 0000000000..dedfefb87c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData8.java
new file mode 100644
index 0000000000..8715c52ba6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData80.java
new file mode 100644
index 0000000000..dca7b7ab49
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData81.java
new file mode 100644
index 0000000000..ddab0a45c3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData82.java
new file mode 100644
index 0000000000..0fbfe50ec3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData83.java
new file mode 100644
index 0000000000..78871a747f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData84.java
new file mode 100644
index 0000000000..d84fb0a876
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData85.java
new file mode 100644
index 0000000000..b2f4c5f6fd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData86.java
new file mode 100644
index 0000000000..10c2e64617
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData87.java
new file mode 100644
index 0000000000..400f135180
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData88.java
new file mode 100644
index 0000000000..6a5b72dcbd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData89.java
new file mode 100644
index 0000000000..230c111e69
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData9.java
new file mode 100644
index 0000000000..896447d650
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData90.java
new file mode 100644
index 0000000000..4ac5a5b926
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData91.java
new file mode 100644
index 0000000000..0987490791
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData92.java
new file mode 100644
index 0000000000..d437f78232
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData93.java
new file mode 100644
index 0000000000..699ce8a461
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData94.java
new file mode 100644
index 0000000000..5da13eb531
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData95.java
new file mode 100644
index 0000000000..373346ede5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData96.java
new file mode 100644
index 0000000000..f44ecc49a2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData97.java
new file mode 100644
index 0000000000..23e4be5e6e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData98.java
new file mode 100644
index 0000000000..f272d6dadf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData99.java
new file mode 100644
index 0000000000..a5f19ba247
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package5/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package5;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData1.java
new file mode 100644
index 0000000000..a714da502f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData10.java
new file mode 100644
index 0000000000..3f4717a811
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData100.java
new file mode 100644
index 0000000000..81040fd095
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData11.java
new file mode 100644
index 0000000000..f9ad6b4412
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData12.java
new file mode 100644
index 0000000000..9c7d9b6253
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData13.java
new file mode 100644
index 0000000000..c8e60b7200
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData14.java
new file mode 100644
index 0000000000..a720c383e7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData15.java
new file mode 100644
index 0000000000..2dc42834ef
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData16.java
new file mode 100644
index 0000000000..aaf52fd0ba
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData17.java
new file mode 100644
index 0000000000..c03cded738
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData18.java
new file mode 100644
index 0000000000..d7395f35cc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData19.java
new file mode 100644
index 0000000000..211dad4548
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData2.java
new file mode 100644
index 0000000000..0ccddfb3ad
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData20.java
new file mode 100644
index 0000000000..c53e50e2fa
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData21.java
new file mode 100644
index 0000000000..4e7475fe69
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData22.java
new file mode 100644
index 0000000000..0464adaa89
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData23.java
new file mode 100644
index 0000000000..5a709f82ed
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData24.java
new file mode 100644
index 0000000000..25bc03f3b8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData25.java
new file mode 100644
index 0000000000..6a02c4aa04
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData26.java
new file mode 100644
index 0000000000..7eacaab54d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData27.java
new file mode 100644
index 0000000000..5e09ba049a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData28.java
new file mode 100644
index 0000000000..3137b05441
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData29.java
new file mode 100644
index 0000000000..284995c2d5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData3.java
new file mode 100644
index 0000000000..1bf3aeb57d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData30.java
new file mode 100644
index 0000000000..4ea3dbbc03
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData31.java
new file mode 100644
index 0000000000..fbdfe6dd96
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData32.java
new file mode 100644
index 0000000000..dd17a04bca
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData33.java
new file mode 100644
index 0000000000..1631f19d29
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData34.java
new file mode 100644
index 0000000000..d1720e5417
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData35.java
new file mode 100644
index 0000000000..7fcdb64084
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData36.java
new file mode 100644
index 0000000000..0cb01832a5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData37.java
new file mode 100644
index 0000000000..760fc9a494
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData38.java
new file mode 100644
index 0000000000..17f99ae9ac
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData39.java
new file mode 100644
index 0000000000..42d1f7ef69
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData4.java
new file mode 100644
index 0000000000..a611e8540a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData40.java
new file mode 100644
index 0000000000..e3809a250a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData41.java
new file mode 100644
index 0000000000..73c73465bd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData42.java
new file mode 100644
index 0000000000..c8aa6239bf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData43.java
new file mode 100644
index 0000000000..124f33406e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData44.java
new file mode 100644
index 0000000000..e01dbf6687
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData45.java
new file mode 100644
index 0000000000..d166c4d736
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData46.java
new file mode 100644
index 0000000000..17fcd2eebc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData47.java
new file mode 100644
index 0000000000..597dff9ad7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData48.java
new file mode 100644
index 0000000000..6da1fe81bc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData49.java
new file mode 100644
index 0000000000..500413a9d3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData5.java
new file mode 100644
index 0000000000..94e8dfee6e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData50.java
new file mode 100644
index 0000000000..691f92a4d6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData51.java
new file mode 100644
index 0000000000..7ff573295c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData52.java
new file mode 100644
index 0000000000..6916552273
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData53.java
new file mode 100644
index 0000000000..273c0a311b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData54.java
new file mode 100644
index 0000000000..4d2570aa59
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData55.java
new file mode 100644
index 0000000000..be6105d9a6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData56.java
new file mode 100644
index 0000000000..df45d190b2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData57.java
new file mode 100644
index 0000000000..95c93d42ac
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData58.java
new file mode 100644
index 0000000000..e0048ee4f0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData59.java
new file mode 100644
index 0000000000..bbc69f7423
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData6.java
new file mode 100644
index 0000000000..36dd952fa4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData60.java
new file mode 100644
index 0000000000..04762ded59
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData61.java
new file mode 100644
index 0000000000..a33cffe875
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData62.java
new file mode 100644
index 0000000000..44e926747b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData63.java
new file mode 100644
index 0000000000..562feec053
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData64.java
new file mode 100644
index 0000000000..ad7ac7530f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData65.java
new file mode 100644
index 0000000000..bca761f0f4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData66.java
new file mode 100644
index 0000000000..20974774e8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData67.java
new file mode 100644
index 0000000000..a65894e8ce
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData68.java
new file mode 100644
index 0000000000..547600eb20
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData69.java
new file mode 100644
index 0000000000..446ecc0985
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData7.java
new file mode 100644
index 0000000000..64b480fe32
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData70.java
new file mode 100644
index 0000000000..e995ae2055
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData71.java
new file mode 100644
index 0000000000..6ffad83d14
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData72.java
new file mode 100644
index 0000000000..931465f387
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData73.java
new file mode 100644
index 0000000000..267f0e6d0a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData74.java
new file mode 100644
index 0000000000..d1136f0c92
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData75.java
new file mode 100644
index 0000000000..483efdbecd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData76.java
new file mode 100644
index 0000000000..91f1b8acfe
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData77.java
new file mode 100644
index 0000000000..aca6701e2e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData78.java
new file mode 100644
index 0000000000..4bcae76fac
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData79.java
new file mode 100644
index 0000000000..3cfd620461
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData8.java
new file mode 100644
index 0000000000..640a451b6b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData80.java
new file mode 100644
index 0000000000..2d785dba09
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData81.java
new file mode 100644
index 0000000000..410cb71b52
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData82.java
new file mode 100644
index 0000000000..38e5e2feae
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData83.java
new file mode 100644
index 0000000000..eead332d2c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData84.java
new file mode 100644
index 0000000000..2a57232816
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData85.java
new file mode 100644
index 0000000000..f3b7ce32fd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData86.java
new file mode 100644
index 0000000000..bc4f535931
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData87.java
new file mode 100644
index 0000000000..a874913b7c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData88.java
new file mode 100644
index 0000000000..4cf0ddb88d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData89.java
new file mode 100644
index 0000000000..544a56b7ab
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData9.java
new file mode 100644
index 0000000000..c96db8d708
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData90.java
new file mode 100644
index 0000000000..27513addbc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData91.java
new file mode 100644
index 0000000000..8aacfd10d7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData92.java
new file mode 100644
index 0000000000..7e5deb75d5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData93.java
new file mode 100644
index 0000000000..4cd11a179e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData94.java
new file mode 100644
index 0000000000..ced5d352ad
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData95.java
new file mode 100644
index 0000000000..c0d87df368
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData96.java
new file mode 100644
index 0000000000..17a70cd926
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData97.java
new file mode 100644
index 0000000000..d56fcc5d43
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData98.java
new file mode 100644
index 0000000000..55980e5a0f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData99.java
new file mode 100644
index 0000000000..d19fdae877
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package6/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package6;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData1.java
new file mode 100644
index 0000000000..9180be84c3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData10.java
new file mode 100644
index 0000000000..fbf10287e5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData100.java
new file mode 100644
index 0000000000..4294461b2f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData11.java
new file mode 100644
index 0000000000..b0fd3fdb21
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData12.java
new file mode 100644
index 0000000000..c09cf02913
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData13.java
new file mode 100644
index 0000000000..a13b824770
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData14.java
new file mode 100644
index 0000000000..fc611a3acb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData15.java
new file mode 100644
index 0000000000..fcf2fd2b89
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData16.java
new file mode 100644
index 0000000000..1e259598ea
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData17.java
new file mode 100644
index 0000000000..e35d3a3c10
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData18.java
new file mode 100644
index 0000000000..5efcdcdcd6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData19.java
new file mode 100644
index 0000000000..57f5015468
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData2.java
new file mode 100644
index 0000000000..0f0e58e383
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData20.java
new file mode 100644
index 0000000000..ea6da04061
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData21.java
new file mode 100644
index 0000000000..46dcdfde5a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData22.java
new file mode 100644
index 0000000000..90b00c861d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData23.java
new file mode 100644
index 0000000000..d141c6f6ff
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData24.java
new file mode 100644
index 0000000000..73693a4639
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData25.java
new file mode 100644
index 0000000000..fb5d7dc6ec
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData26.java
new file mode 100644
index 0000000000..01ffe75815
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData27.java
new file mode 100644
index 0000000000..cf249ce81c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData28.java
new file mode 100644
index 0000000000..01f4806e48
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData29.java
new file mode 100644
index 0000000000..68092e8a89
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData3.java
new file mode 100644
index 0000000000..f5ff5967d1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData30.java
new file mode 100644
index 0000000000..64ef834dd1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData31.java
new file mode 100644
index 0000000000..49fd715c76
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData32.java
new file mode 100644
index 0000000000..6be84d8500
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData33.java
new file mode 100644
index 0000000000..30c5e4e101
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData34.java
new file mode 100644
index 0000000000..91c3b33209
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData35.java
new file mode 100644
index 0000000000..f9d192cc34
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData36.java
new file mode 100644
index 0000000000..07a2d8e438
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData37.java
new file mode 100644
index 0000000000..ff806c5430
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData38.java
new file mode 100644
index 0000000000..f704c5d7d5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData39.java
new file mode 100644
index 0000000000..0ed5bdfc5c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData4.java
new file mode 100644
index 0000000000..bc99db722b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData40.java
new file mode 100644
index 0000000000..406d8187bb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData41.java
new file mode 100644
index 0000000000..187330ff53
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData42.java
new file mode 100644
index 0000000000..ac03041200
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData43.java
new file mode 100644
index 0000000000..8cd2a3595b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData44.java
new file mode 100644
index 0000000000..fc3bcd98de
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData45.java
new file mode 100644
index 0000000000..234d63d46d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData46.java
new file mode 100644
index 0000000000..f2ed230b3f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData47.java
new file mode 100644
index 0000000000..5063ad8c51
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData48.java
new file mode 100644
index 0000000000..a8b0cf6902
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData49.java
new file mode 100644
index 0000000000..99fbd50e47
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData5.java
new file mode 100644
index 0000000000..1e5efb32ad
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData50.java
new file mode 100644
index 0000000000..4853d00a52
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData51.java
new file mode 100644
index 0000000000..7019954d88
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData52.java
new file mode 100644
index 0000000000..52add6a2a7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData53.java
new file mode 100644
index 0000000000..093b45a9c2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData54.java
new file mode 100644
index 0000000000..7551d38bbd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData55.java
new file mode 100644
index 0000000000..44d615bcb6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData56.java
new file mode 100644
index 0000000000..9684fcf5ec
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData57.java
new file mode 100644
index 0000000000..3d5620e3a6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData58.java
new file mode 100644
index 0000000000..6f8e879e46
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData59.java
new file mode 100644
index 0000000000..a9ab05f2cc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData6.java
new file mode 100644
index 0000000000..9e5df7fe2c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData60.java
new file mode 100644
index 0000000000..566df4c2bd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData61.java
new file mode 100644
index 0000000000..933a861660
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData62.java
new file mode 100644
index 0000000000..a969869509
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData63.java
new file mode 100644
index 0000000000..6dfe276c39
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData64.java
new file mode 100644
index 0000000000..a8dc0eac87
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData65.java
new file mode 100644
index 0000000000..d13c7c3dab
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData66.java
new file mode 100644
index 0000000000..722c1d2442
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData67.java
new file mode 100644
index 0000000000..f072fff599
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData68.java
new file mode 100644
index 0000000000..ca9c419d6c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData69.java
new file mode 100644
index 0000000000..5e33be2357
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData7.java
new file mode 100644
index 0000000000..2c0a375660
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData70.java
new file mode 100644
index 0000000000..5bbc1330ce
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData71.java
new file mode 100644
index 0000000000..7873d06957
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData72.java
new file mode 100644
index 0000000000..8b77a2b1b9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData73.java
new file mode 100644
index 0000000000..5d360063db
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData74.java
new file mode 100644
index 0000000000..41cfe4d8f9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData75.java
new file mode 100644
index 0000000000..087e8d90c1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData76.java
new file mode 100644
index 0000000000..e3608f1a38
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData77.java
new file mode 100644
index 0000000000..a34379167f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData78.java
new file mode 100644
index 0000000000..7767c110bc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData79.java
new file mode 100644
index 0000000000..aed4c2be08
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData8.java
new file mode 100644
index 0000000000..fde32cffe5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData80.java
new file mode 100644
index 0000000000..e6906a1cd4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData81.java
new file mode 100644
index 0000000000..bed95da023
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData82.java
new file mode 100644
index 0000000000..77e1605b8c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData83.java
new file mode 100644
index 0000000000..6a730c01cc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData84.java
new file mode 100644
index 0000000000..1c3f5ed563
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData85.java
new file mode 100644
index 0000000000..4a543cfc4b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData86.java
new file mode 100644
index 0000000000..45ded2808a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData87.java
new file mode 100644
index 0000000000..6e4d6ff70a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData88.java
new file mode 100644
index 0000000000..0ac539dd3c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData89.java
new file mode 100644
index 0000000000..ed14ad96de
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData9.java
new file mode 100644
index 0000000000..482598875e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData90.java
new file mode 100644
index 0000000000..04f0dc793e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData91.java
new file mode 100644
index 0000000000..b9306696d5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData92.java
new file mode 100644
index 0000000000..fdb8315676
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData93.java
new file mode 100644
index 0000000000..a296930c8d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData94.java
new file mode 100644
index 0000000000..e7d5dc9b45
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData95.java
new file mode 100644
index 0000000000..90b2223ced
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData96.java
new file mode 100644
index 0000000000..54276aa57e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData97.java
new file mode 100644
index 0000000000..a30f3b4c93
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData98.java
new file mode 100644
index 0000000000..ffc66cf574
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData99.java
new file mode 100644
index 0000000000..f358cf3cc0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package7/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package7;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData1.java
new file mode 100644
index 0000000000..f054b8239d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData10.java
new file mode 100644
index 0000000000..a113035f56
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData100.java
new file mode 100644
index 0000000000..2ec1787756
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData11.java
new file mode 100644
index 0000000000..af27f9a20b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData12.java
new file mode 100644
index 0000000000..e4841d47e6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData13.java
new file mode 100644
index 0000000000..997a0166dd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData14.java
new file mode 100644
index 0000000000..5c4e39c242
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData15.java
new file mode 100644
index 0000000000..6bf696d4bb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData16.java
new file mode 100644
index 0000000000..18cd84fa99
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData17.java
new file mode 100644
index 0000000000..1bdde8a08b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData18.java
new file mode 100644
index 0000000000..191a6824d6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData19.java
new file mode 100644
index 0000000000..fe535ec2bc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData2.java
new file mode 100644
index 0000000000..0bf85c5dcb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData20.java
new file mode 100644
index 0000000000..84fbcf0668
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData21.java
new file mode 100644
index 0000000000..43c3fdfac8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData22.java
new file mode 100644
index 0000000000..73d8b4d786
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData23.java
new file mode 100644
index 0000000000..d26b482250
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData24.java
new file mode 100644
index 0000000000..722fc78536
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData25.java
new file mode 100644
index 0000000000..0a40ad06fb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData26.java
new file mode 100644
index 0000000000..c0985b10b6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData27.java
new file mode 100644
index 0000000000..05dac6ebdd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData28.java
new file mode 100644
index 0000000000..d8d60cea34
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData29.java
new file mode 100644
index 0000000000..c75fc6947d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData3.java
new file mode 100644
index 0000000000..2e98add9fc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData30.java
new file mode 100644
index 0000000000..a62e21c4e6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData31.java
new file mode 100644
index 0000000000..0d73fb6abf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData32.java
new file mode 100644
index 0000000000..cb930beb26
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData33.java
new file mode 100644
index 0000000000..91a44232d7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData34.java
new file mode 100644
index 0000000000..08a631625d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData35.java
new file mode 100644
index 0000000000..3161a11b12
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData36.java
new file mode 100644
index 0000000000..87f35c656a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData37.java
new file mode 100644
index 0000000000..73ffd3c59f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData38.java
new file mode 100644
index 0000000000..62cd10fb75
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData39.java
new file mode 100644
index 0000000000..fcd9aa2f9d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData4.java
new file mode 100644
index 0000000000..1ce3d1851b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData40.java
new file mode 100644
index 0000000000..ea34e904a8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData41.java
new file mode 100644
index 0000000000..66c610a077
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData42.java
new file mode 100644
index 0000000000..85dc59fa54
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData43.java
new file mode 100644
index 0000000000..a1bc251bef
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData44.java
new file mode 100644
index 0000000000..27c8b10a3a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData45.java
new file mode 100644
index 0000000000..dbb17056fb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData46.java
new file mode 100644
index 0000000000..787f807f0f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData47.java
new file mode 100644
index 0000000000..83d3c4385f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData48.java
new file mode 100644
index 0000000000..652725cd9e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData49.java
new file mode 100644
index 0000000000..6e4a7a1618
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData5.java
new file mode 100644
index 0000000000..1faad46d2c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData50.java
new file mode 100644
index 0000000000..92566e3bb6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData51.java
new file mode 100644
index 0000000000..70af80b16a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData52.java
new file mode 100644
index 0000000000..17ad944fc7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData53.java
new file mode 100644
index 0000000000..fa685d2980
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData54.java
new file mode 100644
index 0000000000..1322e2851a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData55.java
new file mode 100644
index 0000000000..d85441f78c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData56.java
new file mode 100644
index 0000000000..a04df7ddd5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData57.java
new file mode 100644
index 0000000000..34d6c87b0e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData58.java
new file mode 100644
index 0000000000..03931c821a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData59.java
new file mode 100644
index 0000000000..92442899d0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData6.java
new file mode 100644
index 0000000000..6c0dc24a00
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData60.java
new file mode 100644
index 0000000000..be781f40e7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData61.java
new file mode 100644
index 0000000000..f52da4119a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData62.java
new file mode 100644
index 0000000000..fe748da702
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData63.java
new file mode 100644
index 0000000000..cbbf1d8b78
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData64.java
new file mode 100644
index 0000000000..04f692814d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData65.java
new file mode 100644
index 0000000000..673726617d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData66.java
new file mode 100644
index 0000000000..d0d37666d2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData67.java
new file mode 100644
index 0000000000..1b8afa0ba8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData68.java
new file mode 100644
index 0000000000..edd273563e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData69.java
new file mode 100644
index 0000000000..18b1d97979
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData7.java
new file mode 100644
index 0000000000..f32c69e6c4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData70.java
new file mode 100644
index 0000000000..c28992de2c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData71.java
new file mode 100644
index 0000000000..01a5192d0c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData72.java
new file mode 100644
index 0000000000..0cc4b9576b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData73.java
new file mode 100644
index 0000000000..50daddbecf
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData74.java
new file mode 100644
index 0000000000..a9c039eb6b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData75.java
new file mode 100644
index 0000000000..5657a35be3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData76.java
new file mode 100644
index 0000000000..d07187bac7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData77.java
new file mode 100644
index 0000000000..0c8d6f2db2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData78.java
new file mode 100644
index 0000000000..7526d659eb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData79.java
new file mode 100644
index 0000000000..41e3fb12c0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData8.java
new file mode 100644
index 0000000000..4cdf775052
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData80.java
new file mode 100644
index 0000000000..aa7cff58d0
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData81.java
new file mode 100644
index 0000000000..ba9c7a3a13
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData82.java
new file mode 100644
index 0000000000..7eec0190f5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData83.java
new file mode 100644
index 0000000000..03b3b7f832
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData84.java
new file mode 100644
index 0000000000..5d61afca2d
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData85.java
new file mode 100644
index 0000000000..dd1d460146
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData86.java
new file mode 100644
index 0000000000..158269eae6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData87.java
new file mode 100644
index 0000000000..5888db3cde
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData88.java
new file mode 100644
index 0000000000..31891573ce
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData89.java
new file mode 100644
index 0000000000..e90925cc5a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData9.java
new file mode 100644
index 0000000000..2964c0c7d1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData90.java
new file mode 100644
index 0000000000..921df38fd7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData91.java
new file mode 100644
index 0000000000..33ad15d900
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData92.java
new file mode 100644
index 0000000000..5938445a37
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData93.java
new file mode 100644
index 0000000000..aa1b4c1f68
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData94.java
new file mode 100644
index 0000000000..88d025081e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData95.java
new file mode 100644
index 0000000000..67f9f8cbc4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData96.java
new file mode 100644
index 0000000000..eb8f68b9a4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData97.java
new file mode 100644
index 0000000000..3e140aed9c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData98.java
new file mode 100644
index 0000000000..8af2f2aa9f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData99.java
new file mode 100644
index 0000000000..7e0261261f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package8/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package8;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData1.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData1.java
new file mode 100644
index 0000000000..728ffc95fe
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData1.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData1")
+public class DummyData1 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData1() {
+ }
+
+ public DummyData1(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData1(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData10.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData10.java
new file mode 100644
index 0000000000..89ee3f8dc4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData10.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData10")
+public class DummyData10 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData10() {
+ }
+
+ public DummyData10(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData10(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData100.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData100.java
new file mode 100644
index 0000000000..33185b26f7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData100.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData100")
+public class DummyData100 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData100() {
+ }
+
+ public DummyData100(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData100(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData11.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData11.java
new file mode 100644
index 0000000000..345cf66ff4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData11.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData11")
+public class DummyData11 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData11() {
+ }
+
+ public DummyData11(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData11(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData12.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData12.java
new file mode 100644
index 0000000000..5a89e1d7de
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData12.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData12")
+public class DummyData12 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData12() {
+ }
+
+ public DummyData12(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData12(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData13.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData13.java
new file mode 100644
index 0000000000..4ebd37fe43
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData13.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData13")
+public class DummyData13 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData13() {
+ }
+
+ public DummyData13(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData13(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData14.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData14.java
new file mode 100644
index 0000000000..2e977668fc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData14.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData14")
+public class DummyData14 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData14() {
+ }
+
+ public DummyData14(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData14(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData15.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData15.java
new file mode 100644
index 0000000000..478ee1da24
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData15.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData15")
+public class DummyData15 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData15() {
+ }
+
+ public DummyData15(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData15(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData16.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData16.java
new file mode 100644
index 0000000000..4968962111
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData16.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData16")
+public class DummyData16 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData16() {
+ }
+
+ public DummyData16(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData16(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData17.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData17.java
new file mode 100644
index 0000000000..6c0b432b0c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData17.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData17")
+public class DummyData17 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData17() {
+ }
+
+ public DummyData17(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData17(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData18.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData18.java
new file mode 100644
index 0000000000..1568c43d50
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData18.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData18")
+public class DummyData18 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData18() {
+ }
+
+ public DummyData18(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData18(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData19.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData19.java
new file mode 100644
index 0000000000..6480e9fbdc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData19.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData19")
+public class DummyData19 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData19() {
+ }
+
+ public DummyData19(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData19(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData2.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData2.java
new file mode 100644
index 0000000000..da890abc86
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData2.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData2")
+public class DummyData2 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData2() {
+ }
+
+ public DummyData2(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData2(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData20.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData20.java
new file mode 100644
index 0000000000..d8b3868372
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData20.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData20")
+public class DummyData20 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData20() {
+ }
+
+ public DummyData20(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData20(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData21.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData21.java
new file mode 100644
index 0000000000..2d90b1ce50
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData21.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData21")
+public class DummyData21 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData21() {
+ }
+
+ public DummyData21(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData21(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData22.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData22.java
new file mode 100644
index 0000000000..4f236e8f66
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData22.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData22")
+public class DummyData22 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData22() {
+ }
+
+ public DummyData22(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData22(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData23.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData23.java
new file mode 100644
index 0000000000..2a243c2197
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData23.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData23")
+public class DummyData23 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData23() {
+ }
+
+ public DummyData23(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData23(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData24.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData24.java
new file mode 100644
index 0000000000..df102e0062
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData24.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData24")
+public class DummyData24 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData24() {
+ }
+
+ public DummyData24(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData24(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData25.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData25.java
new file mode 100644
index 0000000000..53d76b65ec
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData25.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData25")
+public class DummyData25 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData25() {
+ }
+
+ public DummyData25(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData25(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData26.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData26.java
new file mode 100644
index 0000000000..fd4361851b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData26.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData26")
+public class DummyData26 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData26() {
+ }
+
+ public DummyData26(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData26(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData27.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData27.java
new file mode 100644
index 0000000000..819ad7cbfd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData27.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData27")
+public class DummyData27 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData27() {
+ }
+
+ public DummyData27(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData27(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData28.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData28.java
new file mode 100644
index 0000000000..5177ae2823
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData28.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData28")
+public class DummyData28 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData28() {
+ }
+
+ public DummyData28(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData28(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData29.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData29.java
new file mode 100644
index 0000000000..5e886aa8e6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData29.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData29")
+public class DummyData29 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData29() {
+ }
+
+ public DummyData29(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData29(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData3.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData3.java
new file mode 100644
index 0000000000..6dd39c3821
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData3.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData3")
+public class DummyData3 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData3() {
+ }
+
+ public DummyData3(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData3(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData30.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData30.java
new file mode 100644
index 0000000000..dad4c9dfbd
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData30.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData30")
+public class DummyData30 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData30() {
+ }
+
+ public DummyData30(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData30(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData31.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData31.java
new file mode 100644
index 0000000000..8af9463c6f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData31.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData31")
+public class DummyData31 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData31() {
+ }
+
+ public DummyData31(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData31(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData32.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData32.java
new file mode 100644
index 0000000000..99bf504285
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData32.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData32")
+public class DummyData32 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData32() {
+ }
+
+ public DummyData32(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData32(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData33.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData33.java
new file mode 100644
index 0000000000..1b0a1aceca
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData33.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData33")
+public class DummyData33 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData33() {
+ }
+
+ public DummyData33(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData33(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData34.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData34.java
new file mode 100644
index 0000000000..a0cb0d1953
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData34.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData34")
+public class DummyData34 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData34() {
+ }
+
+ public DummyData34(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData34(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData35.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData35.java
new file mode 100644
index 0000000000..9c8452b7c2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData35.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData35")
+public class DummyData35 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData35() {
+ }
+
+ public DummyData35(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData35(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData36.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData36.java
new file mode 100644
index 0000000000..1326fb747a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData36.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData36")
+public class DummyData36 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData36() {
+ }
+
+ public DummyData36(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData36(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData37.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData37.java
new file mode 100644
index 0000000000..a37a6df8f9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData37.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData37")
+public class DummyData37 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData37() {
+ }
+
+ public DummyData37(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData37(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData38.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData38.java
new file mode 100644
index 0000000000..156553893c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData38.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData38")
+public class DummyData38 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData38() {
+ }
+
+ public DummyData38(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData38(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData39.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData39.java
new file mode 100644
index 0000000000..6a94079c87
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData39.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData39")
+public class DummyData39 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData39() {
+ }
+
+ public DummyData39(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData39(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData4.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData4.java
new file mode 100644
index 0000000000..57427eac64
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData4.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData4")
+public class DummyData4 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData4() {
+ }
+
+ public DummyData4(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData4(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData40.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData40.java
new file mode 100644
index 0000000000..83f95c5153
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData40.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData40")
+public class DummyData40 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData40() {
+ }
+
+ public DummyData40(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData40(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData41.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData41.java
new file mode 100644
index 0000000000..8e547a5740
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData41.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData41")
+public class DummyData41 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData41() {
+ }
+
+ public DummyData41(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData41(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData42.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData42.java
new file mode 100644
index 0000000000..f61d881995
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData42.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData42")
+public class DummyData42 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData42() {
+ }
+
+ public DummyData42(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData42(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData43.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData43.java
new file mode 100644
index 0000000000..6770772f61
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData43.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData43")
+public class DummyData43 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData43() {
+ }
+
+ public DummyData43(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData43(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData44.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData44.java
new file mode 100644
index 0000000000..363aed3df8
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData44.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData44")
+public class DummyData44 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData44() {
+ }
+
+ public DummyData44(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData44(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData45.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData45.java
new file mode 100644
index 0000000000..a8dac574de
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData45.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData45")
+public class DummyData45 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData45() {
+ }
+
+ public DummyData45(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData45(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData46.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData46.java
new file mode 100644
index 0000000000..aa3a5fb9b7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData46.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData46")
+public class DummyData46 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData46() {
+ }
+
+ public DummyData46(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData46(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData47.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData47.java
new file mode 100644
index 0000000000..c9f7fe6df7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData47.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData47")
+public class DummyData47 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData47() {
+ }
+
+ public DummyData47(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData47(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData48.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData48.java
new file mode 100644
index 0000000000..574240e38b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData48.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData48")
+public class DummyData48 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData48() {
+ }
+
+ public DummyData48(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData48(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData49.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData49.java
new file mode 100644
index 0000000000..23692ba96f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData49.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData49")
+public class DummyData49 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData49() {
+ }
+
+ public DummyData49(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData49(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData5.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData5.java
new file mode 100644
index 0000000000..7d09fe079c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData5.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData5")
+public class DummyData5 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData5() {
+ }
+
+ public DummyData5(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData5(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData50.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData50.java
new file mode 100644
index 0000000000..1c397d4fac
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData50.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData50")
+public class DummyData50 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData50() {
+ }
+
+ public DummyData50(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData50(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData51.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData51.java
new file mode 100644
index 0000000000..ffa7989f36
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData51.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData51")
+public class DummyData51 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData51() {
+ }
+
+ public DummyData51(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData51(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData52.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData52.java
new file mode 100644
index 0000000000..1cf7a89d0c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData52.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData52")
+public class DummyData52 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData52() {
+ }
+
+ public DummyData52(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData52(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData53.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData53.java
new file mode 100644
index 0000000000..d0cfdf9e5e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData53.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData53")
+public class DummyData53 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData53() {
+ }
+
+ public DummyData53(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData53(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData54.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData54.java
new file mode 100644
index 0000000000..a4d3a2b63a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData54.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData54")
+public class DummyData54 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData54() {
+ }
+
+ public DummyData54(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData54(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData55.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData55.java
new file mode 100644
index 0000000000..950a21484a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData55.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData55")
+public class DummyData55 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData55() {
+ }
+
+ public DummyData55(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData55(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData56.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData56.java
new file mode 100644
index 0000000000..2b4d2d47a9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData56.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData56")
+public class DummyData56 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData56() {
+ }
+
+ public DummyData56(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData56(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData57.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData57.java
new file mode 100644
index 0000000000..4c29d3e67f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData57.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData57")
+public class DummyData57 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData57() {
+ }
+
+ public DummyData57(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData57(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData58.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData58.java
new file mode 100644
index 0000000000..bfce7f84f2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData58.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData58")
+public class DummyData58 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData58() {
+ }
+
+ public DummyData58(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData58(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData59.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData59.java
new file mode 100644
index 0000000000..ef9170abbc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData59.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData59")
+public class DummyData59 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData59() {
+ }
+
+ public DummyData59(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData59(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData6.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData6.java
new file mode 100644
index 0000000000..1c64e36ed6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData6.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData6")
+public class DummyData6 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData6() {
+ }
+
+ public DummyData6(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData6(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData60.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData60.java
new file mode 100644
index 0000000000..e86f8b3652
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData60.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData60")
+public class DummyData60 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData60() {
+ }
+
+ public DummyData60(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData60(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData61.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData61.java
new file mode 100644
index 0000000000..a586392934
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData61.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData61")
+public class DummyData61 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData61() {
+ }
+
+ public DummyData61(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData61(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData62.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData62.java
new file mode 100644
index 0000000000..bf29b81dc2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData62.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData62")
+public class DummyData62 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData62() {
+ }
+
+ public DummyData62(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData62(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData63.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData63.java
new file mode 100644
index 0000000000..f503c0973f
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData63.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData63")
+public class DummyData63 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData63() {
+ }
+
+ public DummyData63(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData63(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData64.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData64.java
new file mode 100644
index 0000000000..d4f80f2021
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData64.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData64")
+public class DummyData64 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData64() {
+ }
+
+ public DummyData64(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData64(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData65.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData65.java
new file mode 100644
index 0000000000..45b30df681
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData65.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData65")
+public class DummyData65 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData65() {
+ }
+
+ public DummyData65(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData65(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData66.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData66.java
new file mode 100644
index 0000000000..1c74e09dae
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData66.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData66")
+public class DummyData66 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData66() {
+ }
+
+ public DummyData66(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData66(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData67.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData67.java
new file mode 100644
index 0000000000..cc3141e2a4
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData67.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData67")
+public class DummyData67 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData67() {
+ }
+
+ public DummyData67(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData67(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData68.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData68.java
new file mode 100644
index 0000000000..f1cd5da5ac
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData68.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData68")
+public class DummyData68 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData68() {
+ }
+
+ public DummyData68(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData68(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData69.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData69.java
new file mode 100644
index 0000000000..099876c5f1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData69.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData69")
+public class DummyData69 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData69() {
+ }
+
+ public DummyData69(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData69(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData7.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData7.java
new file mode 100644
index 0000000000..b3d2fc86ab
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData7.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData7")
+public class DummyData7 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData7() {
+ }
+
+ public DummyData7(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData7(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData70.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData70.java
new file mode 100644
index 0000000000..bb55e7f713
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData70.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData70")
+public class DummyData70 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData70() {
+ }
+
+ public DummyData70(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData70(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData71.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData71.java
new file mode 100644
index 0000000000..996e528bdb
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData71.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData71")
+public class DummyData71 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData71() {
+ }
+
+ public DummyData71(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData71(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData72.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData72.java
new file mode 100644
index 0000000000..fe267537d9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData72.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData72")
+public class DummyData72 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData72() {
+ }
+
+ public DummyData72(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData72(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData73.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData73.java
new file mode 100644
index 0000000000..2262899656
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData73.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData73")
+public class DummyData73 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData73() {
+ }
+
+ public DummyData73(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData73(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData74.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData74.java
new file mode 100644
index 0000000000..bd5318e9b3
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData74.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData74")
+public class DummyData74 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData74() {
+ }
+
+ public DummyData74(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData74(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData75.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData75.java
new file mode 100644
index 0000000000..b6fa9c044b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData75.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData75")
+public class DummyData75 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData75() {
+ }
+
+ public DummyData75(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData75(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData76.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData76.java
new file mode 100644
index 0000000000..d6a748a3e7
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData76.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData76")
+public class DummyData76 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData76() {
+ }
+
+ public DummyData76(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData76(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData77.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData77.java
new file mode 100644
index 0000000000..2bf3518777
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData77.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData77")
+public class DummyData77 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData77() {
+ }
+
+ public DummyData77(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData77(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData78.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData78.java
new file mode 100644
index 0000000000..40b887c254
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData78.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData78")
+public class DummyData78 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData78() {
+ }
+
+ public DummyData78(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData78(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData79.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData79.java
new file mode 100644
index 0000000000..9dc0bb283a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData79.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData79")
+public class DummyData79 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData79() {
+ }
+
+ public DummyData79(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData79(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData8.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData8.java
new file mode 100644
index 0000000000..5c5339210b
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData8.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData8")
+public class DummyData8 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData8() {
+ }
+
+ public DummyData8(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData8(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData80.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData80.java
new file mode 100644
index 0000000000..376cc98ee2
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData80.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData80")
+public class DummyData80 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData80() {
+ }
+
+ public DummyData80(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData80(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData81.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData81.java
new file mode 100644
index 0000000000..e4ca102475
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData81.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData81")
+public class DummyData81 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData81() {
+ }
+
+ public DummyData81(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData81(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData82.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData82.java
new file mode 100644
index 0000000000..f51804c92a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData82.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData82")
+public class DummyData82 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData82() {
+ }
+
+ public DummyData82(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData82(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData83.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData83.java
new file mode 100644
index 0000000000..4c1452bc23
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData83.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData83")
+public class DummyData83 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData83() {
+ }
+
+ public DummyData83(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData83(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData84.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData84.java
new file mode 100644
index 0000000000..53c164be54
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData84.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData84")
+public class DummyData84 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData84() {
+ }
+
+ public DummyData84(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData84(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData85.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData85.java
new file mode 100644
index 0000000000..681b84d71e
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData85.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData85")
+public class DummyData85 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData85() {
+ }
+
+ public DummyData85(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData85(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData86.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData86.java
new file mode 100644
index 0000000000..bf02503c2a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData86.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData86")
+public class DummyData86 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData86() {
+ }
+
+ public DummyData86(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData86(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData87.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData87.java
new file mode 100644
index 0000000000..5d5caff636
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData87.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData87")
+public class DummyData87 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData87() {
+ }
+
+ public DummyData87(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData87(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData88.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData88.java
new file mode 100644
index 0000000000..890e583957
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData88.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData88")
+public class DummyData88 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData88() {
+ }
+
+ public DummyData88(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData88(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData89.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData89.java
new file mode 100644
index 0000000000..b72ef283a5
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData89.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData89")
+public class DummyData89 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData89() {
+ }
+
+ public DummyData89(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData89(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData9.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData9.java
new file mode 100644
index 0000000000..45859cbb09
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData9.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData9")
+public class DummyData9 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData9() {
+ }
+
+ public DummyData9(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData9(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData90.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData90.java
new file mode 100644
index 0000000000..ee0a4d325a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData90.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData90")
+public class DummyData90 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData90() {
+ }
+
+ public DummyData90(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData90(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData91.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData91.java
new file mode 100644
index 0000000000..db974ae0a1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData91.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData91")
+public class DummyData91 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData91() {
+ }
+
+ public DummyData91(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData91(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData92.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData92.java
new file mode 100644
index 0000000000..bd9160ad52
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData92.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData92")
+public class DummyData92 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData92() {
+ }
+
+ public DummyData92(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData92(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData93.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData93.java
new file mode 100644
index 0000000000..eec3f544f9
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData93.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData93")
+public class DummyData93 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData93() {
+ }
+
+ public DummyData93(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData93(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData94.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData94.java
new file mode 100644
index 0000000000..9806c12a0c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData94.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData94")
+public class DummyData94 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData94() {
+ }
+
+ public DummyData94(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData94(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData95.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData95.java
new file mode 100644
index 0000000000..cc233f9e75
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData95.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData95")
+public class DummyData95 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData95() {
+ }
+
+ public DummyData95(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData95(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData96.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData96.java
new file mode 100644
index 0000000000..2bb68c501c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData96.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData96")
+public class DummyData96 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData96() {
+ }
+
+ public DummyData96(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData96(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData97.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData97.java
new file mode 100644
index 0000000000..429997f0f6
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData97.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData97")
+public class DummyData97 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData97() {
+ }
+
+ public DummyData97(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData97(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData98.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData98.java
new file mode 100644
index 0000000000..0e9d2727dc
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData98.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData98")
+public class DummyData98 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData98() {
+ }
+
+ public DummyData98(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData98(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData99.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData99.java
new file mode 100644
index 0000000000..ac5fb68ef1
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/dummy/package9/DummyData99.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.dummy.package9;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@SuppressWarnings("java:S1068")
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "DummyData99")
+public class DummyData99 implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ @XmlAttribute(name = "dummyString")
+ private String dummyString;
+ private int dummyInt;
+ @XmlElement(required = true)
+ private Object dummyObj;
+
+ public DummyData99() {
+ }
+
+ public DummyData99(int dummyInt, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyObj = dummyObj;
+ }
+
+ public DummyData99(int dummyInt, String dummyString, Object dummyObj) {
+ this.dummyInt = dummyInt;
+ this.dummyString = dummyString;
+ this.dummyObj = dummyObj;
+ }
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/kit/ClassData.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/kit/ClassData.java
new file mode 100644
index 0000000000..840f0ed63a
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/kit/ClassData.java
@@ -0,0 +1,167 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.kit;
+
+import java.io.Serializable;
+
+public class ClassData implements Serializable {
+ private static final long serialVersionUID = -2825722598920145079L;
+ private String actionId;// required
+ private String source; // required
+ private String dateReceived;// required
+ private String trackingCode;
+ private String subscriberName;
+ private String emailAddress;
+ private String address;
+ private String city;
+ private String state;
+ private String zipCode;
+ private String actionPerformed;// required
+ private String dateOfAction;// required
+ private String actionStatus;
+ private String errorDesc;
+ private String responseFileName;
+ private boolean eDeliveryIndicator;
+
+ public String getActionId() {
+ return actionId;
+ }
+
+ public void setActionId(String actionId) {
+ this.actionId = actionId;
+ }
+
+ public String getSource() {
+ return source;
+ }
+
+ public void setSource(String source) {
+ this.source = source;
+ }
+
+ public String getDateReceived() {
+ return dateReceived;
+ }
+
+ public void setDateReceived(String dateReceived) {
+ this.dateReceived = dateReceived;
+ }
+
+ public String getTrackingCode() {
+ return trackingCode;
+ }
+
+ public void setTrackingCode(String trackingCode) {
+ this.trackingCode = trackingCode;
+ }
+
+ public String getSubscriberName() {
+ return subscriberName;
+ }
+
+ public void setSubscriberName(String subscriberName) {
+ this.subscriberName = subscriberName;
+ }
+
+ public String getEmailAddress() {
+ return emailAddress;
+ }
+
+ public void setEmailAddress(String emailAddress) {
+ this.emailAddress = emailAddress;
+ }
+
+ public String getAddress() {
+ return address;
+ }
+
+ public void setAddress(String address) {
+ this.address = address;
+ }
+
+ public String getCity() {
+ return city;
+ }
+
+ public void setCity(String city) {
+ this.city = city;
+ }
+
+ public String getState() {
+ return state;
+ }
+
+ public void setState(String state) {
+ this.state = state;
+ }
+
+ public String getZipCode() {
+ return zipCode;
+ }
+
+ public void setZipCode(String zipCode) {
+ this.zipCode = zipCode;
+ }
+
+ public String getActionPerformed() {
+ return actionPerformed;
+ }
+
+ public void setActionPerformed(String actionPerformed) {
+ this.actionPerformed = actionPerformed;
+ }
+
+ public String getDateOfAction() {
+ return dateOfAction;
+ }
+
+ public void setDateOfAction(String dateOfAction) {
+ this.dateOfAction = dateOfAction;
+ }
+
+ public String getActionStatus() {
+ return actionStatus;
+ }
+
+ public void setActionStatus(String actionStatus) {
+ this.actionStatus = actionStatus;
+ }
+
+ public String getErrorDesc() {
+ return errorDesc;
+ }
+
+ public void setErrorDesc(String errorDesc) {
+ this.errorDesc = errorDesc;
+ }
+
+ public String getResponseFileName() {
+ return responseFileName;
+ }
+
+ public void setResponseFileName(String responseFileName) {
+ this.responseFileName = responseFileName;
+ }
+
+ public boolean iseDeliveryIndicator() {
+ return eDeliveryIndicator;
+ }
+
+ public void seteDeliveryIndicator(boolean eDeliveryIndicator) {
+ this.eDeliveryIndicator = eDeliveryIndicator;
+ }
+
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/kit/ClassLog.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/kit/ClassLog.java
new file mode 100644
index 0000000000..043506751c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/kit/ClassLog.java
@@ -0,0 +1,179 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.kit;
+
+import java.io.Serializable;
+import java.time.format.DateTimeFormatter;
+
+public class ClassLog implements Serializable {
+ private static final long serialVersionUID = -4489972701712981564L;
+ public static final DateTimeFormatter SOURCE_DATE_FORMAT = DateTimeFormatter.ofPattern("uuuu.MM.dd");
+ public static final DateTimeFormatter TARGET_DATE_FORMAT = DateTimeFormatter.ofPattern("MM/dd/uuuu");
+ private String actionId;
+ private String source = "";
+ private String dateReceived;
+ private String actionPerformed = "";
+ private String dateOfAction;
+ private String metadataRecordStatus;
+ private String ingestedFileStatus;
+ private String metadataRecordErrorDesc;
+ private String ingestedFileErrorDesc;
+ private String inputDirectory;
+ private String metaDataRecordPDFFileName;
+ private String ingestedPDFFileName;
+ private String correspondenceType;
+ private String applicationUniqueID;
+ private String requestID;
+ private String accountNumber;
+ private boolean eDeliveryIndicator;
+
+ public String getActionId() {
+ return actionId;
+ }
+
+ public void setActionId(String actionId) {
+ this.actionId = actionId;
+ }
+
+ public String getSource() {
+ return source;
+ }
+
+ public void setSource(String source) {
+ this.source = source;
+ }
+
+ public String getDateReceived() {
+ return dateReceived;
+ }
+
+ public void setDateReceived(String dateReceived) {
+ this.dateReceived = dateReceived;
+ }
+
+ public String getActionPerformed() {
+ return actionPerformed;
+ }
+
+ public void setActionPerformed(String actionPerformed) {
+ this.actionPerformed = actionPerformed;
+ }
+
+ public String getDateOfAction() {
+ return dateOfAction;
+ }
+
+ public void setDateOfAction(String dateOfAction) {
+ this.dateOfAction = dateOfAction;
+ }
+
+ public String getMetadataRecordStatus() {
+ return metadataRecordStatus;
+ }
+
+ public void setMetadataRecordStatus(String metadataRecordStatus) {
+ this.metadataRecordStatus = metadataRecordStatus;
+ }
+
+ public String getIngestedFileStatus() {
+ return ingestedFileStatus;
+ }
+
+ public void setIngestedFileStatus(String ingestedFileStatus) {
+ this.ingestedFileStatus = ingestedFileStatus;
+ }
+
+ public String getMetadataRecordErrorDesc() {
+ return metadataRecordErrorDesc;
+ }
+
+ public void setMetadataRecordErrorDesc(String metadataRecordErrorDesc) {
+ this.metadataRecordErrorDesc = metadataRecordErrorDesc;
+ }
+
+ public String getIngestedFileErrorDesc() {
+ return ingestedFileErrorDesc;
+ }
+
+ public void setIngestedFileErrorDesc(String ingestedFileErrorDesc) {
+ this.ingestedFileErrorDesc = ingestedFileErrorDesc;
+ }
+
+ public String getInputDirectory() {
+ return inputDirectory;
+ }
+
+ public void setInputDirectory(String inputDirectory) {
+ this.inputDirectory = inputDirectory;
+ }
+
+ public String getMetaDataRecordPDFFileName() {
+ return metaDataRecordPDFFileName;
+ }
+
+ public void setMetaDataRecordPDFFileName(String metaDataRecordPDFFileName) {
+ this.metaDataRecordPDFFileName = metaDataRecordPDFFileName;
+ }
+
+ public String getIngestedPDFFileName() {
+ return ingestedPDFFileName;
+ }
+
+ public void setIngestedPDFFileName(String ingestedPDFFileName) {
+ this.ingestedPDFFileName = ingestedPDFFileName;
+ }
+
+ public String getCorrespondenceType() {
+ return correspondenceType;
+ }
+
+ public void setCorrespondenceType(String correspondenceType) {
+ this.correspondenceType = correspondenceType;
+ }
+
+ public String getApplicationUniqueID() {
+ return applicationUniqueID;
+ }
+
+ public void setApplicationUniqueID(String applicationUniqueID) {
+ this.applicationUniqueID = applicationUniqueID;
+ }
+
+ public String getRequestID() {
+ return requestID;
+ }
+
+ public void setRequestID(String requestID) {
+ this.requestID = requestID;
+ }
+
+ public String getAccountNumber() {
+ return accountNumber;
+ }
+
+ public void setAccountNumber(String accountNumber) {
+ this.accountNumber = accountNumber;
+ }
+
+ public boolean iseDeliveryIndicator() {
+ return eDeliveryIndicator;
+ }
+
+ public void seteDeliveryIndicator(boolean eDeliveryIndicator) {
+ this.eDeliveryIndicator = eDeliveryIndicator;
+ }
+
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/kit/ClassRecord.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/kit/ClassRecord.java
new file mode 100644
index 0000000000..a16ef52295
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/marshalling/test/model/kit/ClassRecord.java
@@ -0,0 +1,65 @@
+/*
+ * Copyright 2024 Red Hat, Inc. and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.kie.server.api.marshalling.test.model.kit;
+
+import java.io.Serializable;
+
+public class ClassRecord implements Serializable {
+
+ private static final long serialVersionUID = 5174127032991892033L;
+
+ private ClassData wkLogFileData;
+ private int actPerformedLength;
+ private ClassLog wkFileNetLogFileData;
+
+ public ClassRecord() {
+ }
+
+ public ClassRecord(int actPerformedLength, ClassData wkLogFileData) {
+ this.wkLogFileData = wkLogFileData;
+ this.actPerformedLength = actPerformedLength;
+ }
+
+ public ClassRecord(int actPerformedLength, ClassLog wkFileNetLogFileData) {
+ this.wkFileNetLogFileData = wkFileNetLogFileData;
+ this.actPerformedLength = actPerformedLength;
+ }
+
+ public ClassData getWkLogFileData() {
+ return wkLogFileData;
+ }
+
+ public void setWkLogFileData(ClassData wkLogFileData) {
+ this.wkLogFileData = wkLogFileData;
+ }
+
+ public int getActPerformedLength() {
+ return actPerformedLength;
+ }
+
+ public void setActPerformedLength(int actPerformedLength) {
+ this.actPerformedLength = actPerformedLength;
+ }
+
+ public ClassLog getWkFileNetLogFileData() {
+ return wkFileNetLogFileData;
+ }
+
+ public void setWkFileNetLogFileData(ClassLog wkFileNetLogFileData) {
+ this.wkFileNetLogFileData = wkFileNetLogFileData;
+ }
+
+}
diff --git a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/model/MarshallingRoundTripCustomClassListTest.java b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/model/MarshallingRoundTripCustomClassListTest.java
index 03ab351e17..7b434bf84b 100644
--- a/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/model/MarshallingRoundTripCustomClassListTest.java
+++ b/kie-server-parent/kie-server-api/src/test/java/org/kie/server/api/model/MarshallingRoundTripCustomClassListTest.java
@@ -121,4 +121,5 @@ public void testJSONTypeInfoTopLevelOnly() {
Object unmarshalledObject = marshaller.unmarshall(rawContent, PojoA.class);
Assertions.assertThat(unmarshalledObject).isEqualTo(createTestObject());
}
+
}
diff --git a/kie-server-parent/kie-server-api/src/test/resources/complex_payload.json b/kie-server-parent/kie-server-api/src/test/resources/complex_payload.json
new file mode 100644
index 0000000000..255da2ad6c
--- /dev/null
+++ b/kie-server-parent/kie-server-api/src/test/resources/complex_payload.json
@@ -0,0 +1,26 @@
+{
+ "object": {
+ "org.kie.server.api.marshalling.test.model.kit.ClassRecord": {
+ "wkLogFileData": {
+ "actionId": "actionId",
+ "source": "source",
+ "dateReceived": "dateReceived",
+ "trackingCode": "trackingCode",
+ "subscriberName": "subscriberName",
+ "emailAddress": "emailAddress",
+ "address": "address",
+ "city": "city",
+ "state": "state",
+ "zipCode": "zipCode",
+ "actionPerformed": "actionPerformed",
+ "dateOfAction": "dateOfAction",
+ "actionStatus": "actionStatus",
+ "errorDesc": "",
+ "responseFileName": null,
+ "edeliveryIndicator": false
+ },
+ "actPerformedLength": 7,
+ "wkFileNetLogFileData": null
+ }
+ }
+}
\ No newline at end of file