1 16 17 package org.apache.pluto.portalImpl.core; 18 19 import org.apache.pluto.om.window.PortletWindow; 20 import org.apache.pluto.services.information.ResourceURLProvider; 21 22 public class ResourceURLProviderImpl implements ResourceURLProvider 23 { 24 25 private String stringUrl = ""; 26 private String base = ""; 27 28 public ResourceURLProviderImpl(DynamicInformationProviderImpl provider, 29 PortletWindow portletWindow) 30 { 31 } 33 34 36 public void setAbsoluteURL(String path) 37 { 38 stringUrl = path; 39 } 40 41 public void setFullPath(String path) 42 { 43 stringUrl = base + path; 44 } 45 46 public String toString() 47 { 48 65 return stringUrl; 66 } 67 68 } 69 | Popular Tags |