diff options
author | Henri Sara <henri.sara@itmill.com> | 2009-12-01 15:00:49 +0000 |
---|---|---|
committer | Henri Sara <henri.sara@itmill.com> | 2009-12-01 15:00:49 +0000 |
commit | d2240c3ace8ebca936037c5fbac1a0cc18e8937b (patch) | |
tree | 62863021126a2ccffc55b63adb99cc32a1145692 /src/com/vaadin/Application.java | |
parent | e14e35cc2cce369bee90445618354cf97af89ac5 (diff) | |
download | vaadin-framework-d2240c3ace8ebca936037c5fbac1a0cc18e8937b.tar.gz vaadin-framework-d2240c3ace8ebca936037c5fbac1a0cc18e8937b.zip |
#3117 inter-portlet event support (JSR-286), some support for custom portlet actions
svn changeset:10119/svn branch:6.2
Diffstat (limited to 'src/com/vaadin/Application.java')
-rw-r--r-- | src/com/vaadin/Application.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/com/vaadin/Application.java b/src/com/vaadin/Application.java index 2b132fee64..5d10b215e4 100644 --- a/src/com/vaadin/Application.java +++ b/src/com/vaadin/Application.java @@ -722,10 +722,14 @@ public abstract class Application implements URIHandler, /** * Gets the relative uri of the resource. + * + * This method can only be called from within the processing of a UIDL + * request, not from a background thread. * * @param resource * the resource to get relative location. - * @return the relative uri of the resource. + * @return the relative uri of the resource or null if called in a + * background thread */ @Deprecated public String getRelativeLocation(ApplicationResource resource) { |