Package com.allaire.cfx

Examples of com.allaire.cfx.CustomTag


   
   
 
    public void verifyCFX(String name) throws PageException {
      CFXTagPool pool=config.getCFXTagPool();
    CustomTag ct=null;
    try {
      ct = pool.getCustomTag(name);
    }
        catch (CFXTagException e) {
      throw Caster.toPageException(e);
View Full Code Here


      // if(sn.getVersion()==SerialNumber.VERSION_COMMUNITY)
      //     throw new SecurityException("no access to this functionality with the "+sn.getStringVersion()+" version of railo");
     
   
    CFXTagPool pool=pageContext.getConfig().getCFXTagPool();
    CustomTag ct;
    try {
      ct = pool.getCustomTag(appendix);
    }
        catch (CFXTagException e) {
      throw Caster.toPageException(e);
    }
    Request req=new RequestImpl(pageContext,attributes);
    Response rsp=new ResponseImpl(pageContext,req.debug());
    try {
      ct.processRequest(req,rsp);
    } catch (Exception e) {
      throw Caster.toPageException(e);
    }
    pool.releaseCustomTag(ct);
   
View Full Code Here

      String names = ListUtil.arrayToList(set.toArray(new String[set.size()]),",");
     
      throw new CFXTagException("there is no Custom Tag (CFX) with name ["+name+"], available Custom Tags are ["+names+"]");
    }
    CFXTagClass ctc=(CFXTagClass) o;
    CustomTag ct = ctc.newInstance();
    //if(!(o instanceof CustomTag))throw new CFXTagException("["+name+"] is not of type ["+CustomTag.class.getName()+"]");
    return ct;
  }
View Full Code Here

TOP

Related Classes of com.allaire.cfx.CustomTag

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.