Package org.opencms.jsp

Examples of org.opencms.jsp.CmsJspActionElement


     * @param req the JSP request
     * @param res the JSP response
     */
    public FriendlyPropertyEditor(PageContext context, HttpServletRequest req, HttpServletResponse res) {

        super(new CmsJspActionElement(context, req, res));
    }
View Full Code Here


  }
 
  @Override
  public int doEndTag() throws JspException {
    try {
      CmsJspActionElement cms = getCmsActionElement();
      CmsFlexController controller = CmsFlexController.getController(cms.getRequest());
      CmsObject cmso = cms.getCmsObject();
     
      uri = CmsLinkManager.getAbsoluteUri(uri, controller.getCurrentRequest().getElementUri());
      CmsFile file = cmso.readFile(uri);
      String contents = new String(file.getContents(), encoding);
      if (var != null) {
View Full Code Here

TOP

Related Classes of org.opencms.jsp.CmsJspActionElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.