Example usage for com.liferay.portal.kernel.util StringPool DOUBLE_PERIOD

List of usage examples for com.liferay.portal.kernel.util StringPool DOUBLE_PERIOD

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.util StringPool DOUBLE_PERIOD.

Prototype

String DOUBLE_PERIOD

To view the source code for com.liferay.portal.kernel.util StringPool DOUBLE_PERIOD.

Click Source Link

Usage

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
}