com.vtence.molecule.session.Marshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molecule Show documentation
Show all versions of molecule Show documentation
A web micro-framework for Java
package com.vtence.molecule.session;
public interface Marshaller {
byte[] marshall(T content) throws Exception;
T unmarshall(byte[] data) throws Exception;
}