ru.fix.dynamic.property.api.marshaller.DynamicPropertyMarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynamic-property-api Show documentation
Show all versions of dynamic-property-api Show documentation
https://github.com/ru-fix/dynamic-property
package ru.fix.dynamic.property.api.marshaller;
import ru.fix.dynamic.property.api.marshaller.exception.DynamicPropertySerializationException;
/**
* @author Ayrat Zulkarnyaev
*/
public interface DynamicPropertyMarshaller {
String marshall(Object marshalledObject) throws DynamicPropertySerializationException;
T unmarshall(String rawString, Class clazz) throws DynamicPropertySerializationException;
}