com.zhibaocloud.carbon.intg.serializer.CarbonSerializerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of carbon-exchange Show documentation
Show all versions of carbon-exchange Show documentation
智保云投保通道开发 SDK。定义数据模型以及数据交互所支持的加解密方法
The newest version!
package com.zhibaocloud.carbon.intg.serializer;
import java.util.ServiceLoader;
/**
* @author yangtuo
*/
public interface CarbonSerializerFactory {
CarbonSerializer create(SerializationConfiguration config);
static CarbonSerializerFactory newInstance() {
ServiceLoader loader =
ServiceLoader.load(CarbonSerializerFactory.class);
return loader.iterator().next();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy