Moved escape handlers

This commit is contained in:
Mikhail Trofimov 2025-06-16 10:06:51 +03:00
parent 96e0f20ebd
commit cab48f940f
4 changed files with 4 additions and 4 deletions

View file

@ -7,7 +7,7 @@ import jakarta.xml.bind.Unmarshaller;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.exception.ExceptionUtils; import org.apache.commons.lang3.exception.ExceptionUtils;
import org.eclipse.persistence.jaxb.MarshallerProperties; import org.eclipse.persistence.jaxb.MarshallerProperties;
import ru.nbch.credit_tracker.utils.EscapeHandlerUtil; import ru.nbch.credit_tracker.utils.xml.EscapeHandlerUtil;
import javax.xml.stream.XMLInputFactory; import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamReader; import javax.xml.stream.XMLStreamReader;

View file

@ -1,4 +1,4 @@
package ru.nbch.credit_tracker.utils; package ru.nbch.credit_tracker.utils.xml;
import org.eclipse.persistence.oxm.CharacterEscapeHandler; import org.eclipse.persistence.oxm.CharacterEscapeHandler;

View file

@ -1,4 +1,4 @@
package ru.nbch.credit_tracker.utils; package ru.nbch.credit_tracker.utils.xml;
import jakarta.xml.bind.Marshaller; import jakarta.xml.bind.Marshaller;

View file

@ -1,4 +1,4 @@
package ru.nbch.credit_tracker.utils; package ru.nbch.credit_tracker.utils.xml;
import org.eclipse.persistence.internal.oxm.CharacterEscapeHandler; import org.eclipse.persistence.internal.oxm.CharacterEscapeHandler;