/* (non-Javadoc)
  * @see com.mg.framework.api.ApplicationServer#invalidateUserSessions(java.lang.String[])
  */
 public void invalidateUserSessions(String[] sessionIds) throws Exception {
   delegate.invalidateUserSessions(sessionIds);
 }
 /* (non-Javadoc)
  * @see com.mg.framework.api.ApplicationServer#loadUserSessionInfo(java.lang.String)
  */
 public UserSessionInfo loadUserSessionInfo(String httpSessionId) throws Exception {
   return delegate.loadUserSessionInfo(httpSessionId);
 }
 /* (non-Javadoc)
  * @see com.mg.framework.api.ApplicationServer#sendAdminMessage(java.lang.String[], java.lang.String)
  */
 public void sendAdminMessage(String[] sessionIds, String message) throws Exception {
   delegate.sendAdminMessage(sessionIds, message);
 }
 /* (non-Javadoc)
  * @see com.mg.framework.api.ApplicationServer#getUserSessionInfos()
  */
 public Set<UserSessionInfo> loadUserSessionInfos() throws Exception {
   return delegate.loadUserSessionInfos();
 }