use of com.xpn.xwiki.web.XWikiURLFactory in project xwiki-platform by xwiki.
the class ObjectPropertyWikiResource method getURL.
@Override
public String getURL(XWikiDocument document) throws Exception {
XWikiContext xcontext = this.xcontextProvider.get();
XWikiURLFactory urlf = xcontext.getURLFactory();
URL url = urlf.createSkinURL(this.reference.getName(), document.getSpace(), document.getName(), document.getDatabase(), xcontext);
return urlf.getURL(url, xcontext);
}
Aggregations