Package com.jalios.jcms.portlet
Interface PortletJspInterface
-
public interface PortletJspInterface
Interface to be implemented by any portlet rendering a specific JSP- Since:
- jcms-10.0.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ControllerStatus
checkJsp()
Check integrity of the JSP field valuejava.lang.String
getJsp()
Path of the JSP to be used by this PortletJspvoid
setJsp(java.lang.String path)
Set path of the JSP to be used by this PortletJsp
-
-
-
Method Detail
-
getJsp
java.lang.String getJsp()
Path of the JSP to be used by this PortletJsp- Returns:
- a path, relative to the webapp root
-
setJsp
void setJsp(java.lang.String path)
Set path of the JSP to be used by this PortletJsp- Parameters:
path
- a JSP path relative to the webapp root
-
checkJsp
default ControllerStatus checkJsp()
Check integrity of the JSP field value- Returns:
- a ControllerStatus, never return null
-
-