This is an automated email from the ASF dual-hosted git repository.
veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-axiom.git
The following commit(s) were added to refs/heads/master by this push:
new 31d9e3119 Update roadmap: StAX is no longer used as serializer
31d9e3119 is described below
commit 31d9e3119a452df2cde1b692d58b65b5bec3dd2f
Author: Andreas Veithen-Knowles <[email protected]>
AuthorDate: Sat Feb 21 23:06:03 2026 +0000
Update roadmap: StAX is no longer used as serializer
Axiom now uses a custom Serializer class that writes XML directly to
OutputStream/Writer without going through XMLStreamWriter. StAX is
still used as the parser, so update the roadmap to reflect this.
---
docs/roadmap.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/roadmap.md b/docs/roadmap.md
index 7889cc4c7..7add3f165 100644
--- a/docs/roadmap.md
+++ b/docs/roadmap.md
@@ -48,7 +48,7 @@ The way exceptions are used in Axiom 1.2.x is not very
consistent. In addition i
code to distinguish between different types of error cases. This should be
improved in
Axiom 1.3 to meet the following requirements:
-* Although the two implementations of the Axiom API (LLOM and DOOM) use StAX
as XML parser and serializer, this
+* Although the two implementations of the Axiom API (LLOM and DOOM) use StAX
as XML parser, this
is not a strict requirement. The only strict requirements are that the
implementation is able to
construct a tree from a `XMLStreamReader` supplied by application code, is
able to serialize
a tree to an `XMLStreamWriter` and is able to construct an
`XMLStreamReader` from a tree.