All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy