org.kie.server.api.marshalling.Marshaller Maven / Gradle / Ivy
The newest version!
package org.kie.server.api.marshalling;
/**
* These Marshallers implementations must be thread-safe
*/
public interface Marshaller {
public String marshall(Object input);
public T unmarshall(String input, Class type);
public void dispose();
}