org.jboss.resteasy.spi.MarshalledEntity Maven / Gradle / Ivy
The newest version!
package org.jboss.resteasy.spi;
/**
* Allows you to access the entity's raw bytes as well as the marshalled object.
*
* @author Bill Burke
* @version $Revision: 1 $
*/
public interface MarshalledEntity
{
byte[] getMarshalledBytes();
T getEntity();
}