View Javadoc

1   package org.archive.io.hbase;
2   
3   // TODO: Auto-generated Javadoc
4   /**
5    * The Interface Serializer.
6    */
7   public interface Serializer {
8   
9   	/**
10  	 * Implement if you want to serialize bytes in a custom manner.
11  	 *
12  	 * @param bytes the bytes
13  	 * @return serialized bytes
14  	 */
15  	public byte[] serialize(byte[] bytes);
16  
17  }