Package railo.runtime.util

Examples of railo.runtime.util.Cast


    }
    else if(raw instanceof List) {
      return (List) raw;
    }
   
    Cast caster = CFMLEngineFactory.getInstance().getCastUtil();
    return caster.toList(raw,null);
  }
View Full Code Here


  public static void init(ConfigWeb config,String[] cacheNames,Struct[] arguments) {
   
  }

  public void init(Config config,String name, Struct arguments) throws IOException {
    Cast caster = CFMLEngineFactory.getInstance().getCastUtil();
    String strUrl=null;
   
    try {
      strUrl=caster.toString(arguments.get("url"));
      this.name=caster.toString(arguments.get("remoteCacheName"));
     
    } catch (PageException e) {
      throw new IOException(e.getMessage());
    }
    if(!strUrl.endsWith("/")){
View Full Code Here

TOP

Related Classes of railo.runtime.util.Cast

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.