001    package biz.hammurapi.remoting.http;
002    
003    /**
004     * Marker interface to indicate that object implementing this
005     * interface shall not be serialized, but stored in session registry.
006     * Remote object are strongly advised to properly implement equals() and hashCode()
007     * to avoid bloating of the registry.
008     * @author Pavel
009     */
010    public interface HttpRemote {
011    
012    }