return new VaadinClient(m_manager, m_aceHost, m_obrUrl, m_repositoryXML, m_useAuth, m_userName, m_password, m_cacheRate, m_pageLength);
}
@Override
protected SystemMessages getSystemMessages() {
CustomizedSystemMessages msgs = new CustomizedSystemMessages();
msgs.setAuthenticationErrorNotificationEnabled(false);
msgs.setAuthenticationErrorURL(m_servletEndpoint.concat("/?authenticationError"));
msgs.setCommunicationErrorNotificationEnabled(false);
msgs.setCommunicationErrorURL(m_servletEndpoint.concat("/?communicationError"));
msgs.setCookiesDisabledNotificationEnabled(false);
msgs.setCookiesDisabledURL(m_servletEndpoint.concat("/?cookiesDisabled"));
msgs.setInternalErrorNotificationEnabled(false);
msgs.setInternalErrorURL(m_servletEndpoint.concat("/?internalError"));
msgs.setOutOfSyncNotificationEnabled(false);
msgs.setSessionExpiredNotificationEnabled(false);
msgs.setSessionExpiredURL(m_servletEndpoint.concat("/?sessionTimedOut"));
return msgs;
}