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

io.github.icodegarden.commons.lang.serialization.ByteArrayDeserializer Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package io.github.icodegarden.commons.lang.serialization;

/**
 * 
 * @author Fangfang.Xu
 *
 */
public class ByteArrayDeserializer implements Deserializer {

	@Override
	public byte[] deserialize(byte[] data) throws SerializationException {
		return data;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy