001    package railo.runtime.type.scope;
002    
003    import railo.runtime.type.Scope;
004    
005    /**
006     * Interface of the scope client
007     */
008    public interface Client extends Scope { 
009    
010        
011            /**
012             * @return time when Client Scope last time is visited
013             */
014            public abstract long lastVisit();
015    
016            /**
017             * @return all keys except the readpnly ones (cfid,cftoken,hitcount,lastvisit ...)
018             */
019            public abstract String[] pureKeys();
020    
021    }