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

com.alogic.remote.call.Builder Maven / Gradle / Ivy

There is a newer version: 1.6.16
Show newest version
package com.alogic.remote.call;

/**
 * 用于对指定的对象进行序列化和反序列化
 * 
 * @author duanyy
 *
 * @param 
 * 
 * @since 1.2.9
 * 
 * @version 1.6.8.13 [duanyy 20170427] 
* - 从alogic-remote中迁移过来
*/ public interface Builder { /** * 将指定的对象序列化为Json对象 * @param id * @param o * @return Json对象 */ public Object serialize(String id,data o); /** * 将Json对象反序列化为对象 * @param id * @param json * @return 对象 */ public data deserialize(String id,Object json); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy