1 25 package org.ofbiz.base.util.cache; 26 27 import java.io.IOException ; 28 29 import org.ofbiz.base.util.UtilObject; 30 31 39 public class JdbmSerializer implements jdbm.helper.Serializer { 40 41 public byte[] serialize(Object o) throws IOException { 42 return UtilObject.getBytes(o); 43 } 44 45 public Object deserialize(byte[] bytes) throws IOException { 46 return UtilObject.getObject(bytes); 47 } 48 } 49 | Popular Tags |