Package railo.runtime.type.scope

Examples of railo.runtime.type.scope.Session


    if(key==null) key="";
   
    return getStorageScope(pc).generateToken(key, forceNew);
  }
  public static StorageScope getStorageScope(PageContext pc) throws PageException {
    Session session = pc.sessionScope();
    if(!(session instanceof StorageScope))
      throw new ExpressionException("this function only works with CF Sessions");
    return (StorageScope) session;
  }
View Full Code Here

TOP

Related Classes of railo.runtime.type.scope.Session

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.