| author | Vikas Mishra | 2012-03-16 09:13:53 (EDT) |
|---|---|---|
| committer | Manik Kishore | 2012-06-19 07:21:42 (EDT) |
| commit | 7f8335d5f23494f8aac2a023747bc2f9c94d9de1 (patch) (side-by-side diff) | |
| tree | 87a362f7f5df2e9c4784bd219469d18ccc72beea | |
| parent | 36cd3586fe92ef355efe52993edbfe9f21178d5a (diff) | |
| download | org.eclipse.stardust.ui.web-7f8335d5f23494f8aac2a023747bc2f9c94d9de1.zip org.eclipse.stardust.ui.web-7f8335d5f23494f8aac2a023747bc2f9c94d9de1.tar.gz org.eclipse.stardust.ui.web-7f8335d5f23494f8aac2a023747bc2f9c94d9de1.tar.bz2 | |
Jira-ID: CRNT-24188
implemented resolveContextualObject() for TabScope as it is required since Spring 3.0
git-svn-id: http://emeafrazerg/svn/ipp/product/trunk/stardust/ui.web@54599 8100b5e0-4d52-466c-ae9c-bdeccbdeaf6b
| -rw-r--r-- | portal-common/src/main/java/org/eclipse/stardust/ui/web/common/spring/scope/TabScope.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/portal-common/src/main/java/org/eclipse/stardust/ui/web/common/spring/scope/TabScope.java b/portal-common/src/main/java/org/eclipse/stardust/ui/web/common/spring/scope/TabScope.java index fb11730..74acc87 100644 --- a/portal-common/src/main/java/org/eclipse/stardust/ui/web/common/spring/scope/TabScope.java +++ b/portal-common/src/main/java/org/eclipse/stardust/ui/web/common/spring/scope/TabScope.java @@ -132,4 +132,14 @@ public class TabScope implements Scope return bean;
}
+ /**
+ * This method is part of the Scope SPI in Spring 3.0, but we can just that.
+ */
+ public Object resolveContextualObject(String key)
+ {
+// FacesContext facesContext = FacesContext.getCurrentInstance();
+// FacesRequestAttributes facesRequestAttributes = new FacesRequestAttributes(facesContext);
+// return facesRequestAttributes.resolveReference(name);
+ return null;
+ }
}
|

