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

com.uulookingfor.ics.serialize.Serializer Maven / Gradle / Ivy

package com.uulookingfor.ics.serialize;

import com.uulookingfor.ics.serialize.domain.IcsSerializeException;

/**
 * @author suxiong.sx 
 */
public interface Serializer {
	
	 byte[] serialize(T obj);
	
	 T deSerialize(byte[] para, Class clazz) throws IcsSerializeException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy