JacksonXmlSerdes.java
/**
* Copyright (C) 2022 Christopher J. Stehno
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.github.cjstehno.testthings.serdes;
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
import lombok.RequiredArgsConstructor;
import java.io.IOException;
/**
* A {@link SerdesProvider} that uses the Jackson XML data format for serialization and deserialization.
*/
@RequiredArgsConstructor
public class JacksonXmlSerdes implements SerdesProvider {
private final XmlMapper mapper;
/**
* Creates an instance with the default configured {@link XmlMapper}.
*/
public JacksonXmlSerdes(){
this(new XmlMapper());
}
@Override public byte[] serializeToBytes(Object object) throws IOException {
return mapper.writeValueAsBytes(object);
}
@Override public String serializeToString(Object object) throws IOException {
return mapper.writeValueAsString(object);
}
@Override public <T> T deserialize(byte[] bytes, Class<? extends T> type) throws IOException {
return mapper.readValue(bytes, type);
}
@Override public <T> T deserialize(String string, Class<? extends T> type) throws IOException {
return mapper.readValue(string, type);
}
@Override public String toString() {
return getClass().getSimpleName();
}
}