com.clickntap.tool.hessian.SpringExtensibleSerializerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of click_framework Show documentation
Show all versions of click_framework Show documentation
Java Framework based on Spring Framework, Freemarker and Simplicity
The newest version!
package com.clickntap.tool.hessian;
import java.util.List;
import com.caucho.hessian.io.AbstractSerializerFactory;
import com.caucho.hessian.io.SerializerFactory;
public class SpringExtensibleSerializerFactory extends SerializerFactory {
public void setSerializerFactories(List factories) {
for (AbstractSerializerFactory factory : factories) {
addFactory(factory);
}
}
}