Package org.guvnor.ala.marshalling
Interface Marshaller<T>
-
- All Known Implementing Classes:
JSONBaseMarshaller,PipelineExecutorTraceImplMarshaller
public interface Marshaller<T>General purpose contract for marshalling/unmarshalling operations.
-
-
Method Detail
-
marshal
String marshal(T value) throws IOException
- Throws:
IOException
-
unmarshal
T unmarshal(String marshalledValue) throws IOException
- Throws:
IOException
-
-