Package com.vaadin.server
Class SystemMessagesInfo
- java.lang.Object
-
- com.vaadin.server.SystemMessagesInfo
-
- All Implemented Interfaces:
Serializable
public class SystemMessagesInfo extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SystemMessagesInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LocalegetLocale()The locale of the UI related to theSystemMessagesrequest.VaadinRequestgetRequest()Gets the request currently in progress.VaadinServicegetService()Returns the service this SystemMessages request comes from.voidsetLocale(Locale locale)voidsetRequest(VaadinRequest request)voidsetService(VaadinService service)
-
-
-
Method Detail
-
getLocale
public Locale getLocale()
The locale of the UI related to theSystemMessagesrequest.- Returns:
- The Locale or null if the locale is not known
-
setLocale
public void setLocale(Locale locale)
-
getRequest
public VaadinRequest getRequest()
Gets the request currently in progress.- Returns:
- The request currently in progress or null if no request is in progress.
-
setRequest
public void setRequest(VaadinRequest request)
-
getService
public VaadinService getService()
Returns the service this SystemMessages request comes from.- Returns:
- The service which triggered this request or null of not triggered from a service.
-
setService
public void setService(VaadinService service)
-
-