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

com.dieselpoint.norm.serialize.DbSerializable Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package com.dieselpoint.norm.serialize;


/**
 * Serializes a class to and from a string.
 * Implementations must have a zero-arg constructor and must
 * be thread-safe.
 */
public interface DbSerializable {
	
	public String serialize(Object in);
	public Object deserialize(String in, Class targetClass);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy