List of usage examples for com.liferay.portal.kernel.util StringPool DOUBLE_PERIOD
String DOUBLE_PERIOD
To view the source code for com.liferay.portal.kernel.util StringPool DOUBLE_PERIOD.
Click Source Link
From source file:com.liferay.util.bridges.mvc.MVCPortlet.java
License:Open Source License
protected void checkPath(String path) throws PortletException { if (!path.startsWith(templatePath) || path.contains(StringPool.DOUBLE_PERIOD) || !PortalUtil.isValidResourceId(path)) { throw new PortletException("Path " + path + " is not accessible by this portlet"); }//from w ww.j a v a 2 s .c o m }