Package railo.runtime.config

Examples of railo.runtime.config.DebugEntry


     
      String rtn = getString("admin",action,"returnVariable");
      railo.runtime.type.Query qry=
          new QueryImpl(new Collection.Key[]{KeyConstants._id,LABEL,IP_RANGE,READONLY,KeyConstants._type,CUSTOM},entries.length,rtn);
        pageContext.setVariable(rtn,qry);
        DebugEntry de;
        for(int i=0;i<entries.length;i++) {
            int row=i+1;
            de=entries[i];
            qry.setAtEL(KeyConstants._id,row,de.getId());
            qry.setAtEL(LABEL,row,de.getLabel());
            qry.setAtEL(IP_RANGE,row,de.getIpRangeAsString());
            qry.setAtEL(KeyConstants._type,row,de.getType());
            qry.setAtEL(READONLY,row,Caster.toBoolean(de.isReadOnly()));
            qry.setAtEL(CUSTOM,row,de.getCustom());
        }
    }
View Full Code Here

TOP

Related Classes of railo.runtime.config.DebugEntry

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.