1 package org.exoplatform.services.wsrp.consumer; 2 3 /** 4 * A consumer based session which represents a user session with a certain producer. 5 * This user session contains one or more group sessions. 6 * 7 * @author <a HREF='mailto:peter.fischer@de.ibm.com'>Peter Fischer</a> 8 * @author Benjamin Mestrallet 9 * @see GroupSession 10 */ 11 public interface UserSessionMgr extends UserSession, InitCookieInfo { 12 13 } 14