com.sippnex.firemaw.IFiremawProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firemaw-server Show documentation
Show all versions of firemaw-server Show documentation
Server-side Spring library for firemaw. A dynamic web entity manager
package com.sippnex.firemaw;
public interface IFiremawProcessor {
public FiremawDto serialize(Object object, Class clazz);
public Object deserialize(FiremawDto firemawDto, Class clazz);
}