Package com.vaadin.server

Examples of com.vaadin.server.CustomizedSystemMessages


                        new SystemMessagesProvider() {

                            @Override
                            public SystemMessages getSystemMessages(
                                    SystemMessagesInfo systemMessagesInfo) {
                                CustomizedSystemMessages csm = new CustomizedSystemMessages();
                                // csm.setInternalErrorCaption("Request query string: "
                                // + ((VaadinServletRequest) systemMessagesInfo
                                // .getRequest()).getQueryString());
                                csm.setInternalErrorMessage("MessagesInfo locale: "
                                        + systemMessagesInfo.getLocale());
                                return csm;

                            }
                        });
View Full Code Here


        }));

    }

    public static SystemMessages getSystemMessages() {
        CustomizedSystemMessages msgs = new CustomizedSystemMessages();

        msgs.setSessionExpiredURL("http://www.vaadin.com/");
        msgs.setSessionExpiredCaption("Foo");
        msgs.setSessionExpiredMessage("Bar");

        return msgs;
    }
View Full Code Here

        request.getService().setSystemMessagesProvider(
                new SystemMessagesProvider() {
                    @Override
                    public SystemMessages getSystemMessages(
                            SystemMessagesInfo systemMessagesInfo) {
                        CustomizedSystemMessages msgs = new CustomizedSystemMessages();
                        msgs.setSessionExpiredMessage(null);
                        msgs.setSessionExpiredCaption(null);
                        msgs.setSessionExpiredNotificationEnabled(true);
                        msgs.setSessionExpiredURL("http://example.com/");
                        return msgs;
                    }
                });
        /*
         * NOTE: in practice, this means a timeout after 25 seconds, because of
View Full Code Here

    }

    @Override
    public SystemMessages getSystemMessages(Locale locale)
    {
        CustomizedSystemMessages systemMessages = new CustomizedSystemMessages();
        String message;

        message = messageSource.getMessage("vaadin.sessionExpired.Caption", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setSessionExpiredCaption(message);
        }
        message = messageSource.getMessage("vaadin.sessionExpired.Message", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setSessionExpiredMessage(message);
        }
        message = messageSource.getMessage("vaadin.sessionExpired.URL", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setSessionExpiredURL(message);
        }
        message = messageSource.getMessage("vaadin.sessionExpired.NotificationEnabled", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            boolean notificationEnabled = (message.equalsIgnoreCase("true") || message.equalsIgnoreCase("1"));
            systemMessages.setSessionExpiredNotificationEnabled(notificationEnabled);
        }

        message = messageSource.getMessage("vaadin.communicationError.Caption", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setCommunicationErrorCaption(message);
        }
        message = messageSource.getMessage("vaadin.communicationError.Message", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setCommunicationErrorMessage(message);
        }
        message = messageSource.getMessage("vaadin.communicationError.URL", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setCommunicationErrorURL(message);
        }
        message = messageSource.getMessage("vaadin.communicationError.NotificationEnabled", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            boolean notificationEnabled = (message.equalsIgnoreCase("true") || message.equalsIgnoreCase("1"));
            systemMessages.setCommunicationErrorNotificationEnabled(notificationEnabled);
        }

        message = messageSource.getMessage("vaadin.authenticationError.Caption", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setAuthenticationErrorCaption(message);
        }
        message = messageSource.getMessage("vaadin.authenticationError.Message", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setAuthenticationErrorMessage(message);
        }
        message = messageSource.getMessage("vaadin.authenticationError.URL", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setAuthenticationErrorURL(message);
        }
        message = messageSource.getMessage("vaadin.authenticationError.NotificationEnabled", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            boolean notificationEnabled = (message.equalsIgnoreCase("true") || message.equalsIgnoreCase("1"));
            systemMessages.setAuthenticationErrorNotificationEnabled(notificationEnabled);
        }

        message = messageSource.getMessage("vaadin.internalError.Caption", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setInternalErrorCaption(message);
        }
        message = messageSource.getMessage("vaadin.internalError.Message", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setInternalErrorMessage(message);
        }
        message = messageSource.getMessage("vaadin.internalError.URL", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setInternalErrorURL(message);
        }
        message = messageSource.getMessage("vaadin.internalError.NotificationEnabled", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            boolean notificationEnabled = (message.equalsIgnoreCase("true") || message.equalsIgnoreCase("1"));
            systemMessages.setInternalErrorNotificationEnabled(notificationEnabled);
        }

        message = messageSource.getMessage("vaadin.outOfSync.Caption", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setOutOfSyncCaption(message);
        }
        message = messageSource.getMessage("vaadin.outOfSync.Message", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setOutOfSyncMessage(message);
        }
        message = messageSource.getMessage("vaadin.outOfSync.URL", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setOutOfSyncURL(message);
        }
        message = messageSource.getMessage("vaadin.outOfSync.NotificationEnabled", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            boolean notificationEnabled = (message.equalsIgnoreCase("true") || message.equalsIgnoreCase("1"));
            systemMessages.setOutOfSyncNotificationEnabled(notificationEnabled);
        }

        message = messageSource.getMessage("vaadin.cookiesDisabled.Caption", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setCookiesDisabledCaption(message);
        }
        message = messageSource.getMessage("vaadin.cookiesDisabled.Message", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setCookiesDisabledMessage(message);
        }
        message = messageSource.getMessage("vaadin.cookiesDisabled.URL", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            systemMessages.setCookiesDisabledURL(message);
        }
        message = messageSource.getMessage("vaadin.cookiesDisabled.NotificationEnabled", null, MESSAGE_NOT_FOUND, locale);
        if (!message.equals(MESSAGE_NOT_FOUND))
        {
            boolean notificationEnabled = (message.equalsIgnoreCase("true") || message.equalsIgnoreCase("1"));
            systemMessages.setCookiesDisabledNotificationEnabled(notificationEnabled);
        }

        return systemMessages;
    }
View Full Code Here

TOP

Related Classes of com.vaadin.server.CustomizedSystemMessages

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.