/**
  * Deserialize the given byte array to session attributes, this is delegated to {@link
  * SessionAttributesTranscoder#deserializeAttributes(byte[])} (using the {@link
  * SessionAttributesTranscoder} provided in the constructor of this class).
  *
  * @param data the serialized attributes
  * @return the deserialized attributes
  * @see de.javakaffee.web.msm.SessionAttributesTranscoder#deserializeAttributes(byte[])
  */
 public Map<String, Object> deserializeAttributes(final byte[] data) {
   return _attributesTranscoder.deserializeAttributes(data);
 }