1 package org.exoplatform.services.wsrp.consumer; 2 3 import org.exoplatform.services.wsrp.type.MarkupContext; 4 5 /** 6 * This is the abstraction for a render request at a integrated 7 * remote portlet at the consumer side. 8 * 9 * @author Benjamin Mestrallet 10 */ 11 public interface WSRPMarkupRequest extends WSRPBaseRequest { 12 /** 13 * Get the markup context if there is cached markup for this portlet instance 14 * or null in case of an empty markup cache. 15 * 16 * @return The cached markup context 17 */ 18 public MarkupContext getCachedMarkup(); 19 } 20