You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by ms...@apache.org on 2016/04/08 15:40:25 UTC

[13/34] portals-pluto git commit: fixed bug that was preventing the resource ID rfrom being stored on the URL

fixed bug that was preventing the resource ID rfrom being stored on the URL


Project: http://git-wip-us.apache.org/repos/asf/portals-pluto/repo
Commit: http://git-wip-us.apache.org/repos/asf/portals-pluto/commit/ae766fdf
Tree: http://git-wip-us.apache.org/repos/asf/portals-pluto/tree/ae766fdf
Diff: http://git-wip-us.apache.org/repos/asf/portals-pluto/diff/ae766fdf

Branch: refs/heads/V3Prototype
Commit: ae766fdfb3a89fa34025839196419593509b1e14
Parents: 70f9642
Author: Scott Nicklous <ms...@apache.org>
Authored: Fri Mar 25 06:14:21 2016 +0100
Committer: Scott Nicklous <ms...@apache.org>
Committed: Fri Mar 25 06:14:21 2016 +0100

----------------------------------------------------------------------
 .../pluto/driver/services/container/PortletURLProviderImpl.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/portals-pluto/blob/ae766fdf/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/services/container/PortletURLProviderImpl.java
----------------------------------------------------------------------
diff --git a/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/services/container/PortletURLProviderImpl.java b/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/services/container/PortletURLProviderImpl.java
index 761c33e..074f467 100644
--- a/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/services/container/PortletURLProviderImpl.java
+++ b/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/services/container/PortletURLProviderImpl.java
@@ -252,7 +252,7 @@ public class PortletURLProviderImpl implements PortletURLProvider {
    }
 
    public void setResourceID(String resourceID) {
-      url.setCacheability(resourceID);
+      url.setResourceID(resourceID);
    }
 
    public String toURL() {