001    package railo.runtime.type.scope;
002    
003    public interface ScriptProtected {
004    
005            public static final int UNDEFINED=0;
006            public static final int YES=1;
007            public static final int NO=2;
008            
009            
010            /**
011         * @return returns if the values of the scope are already protected against cross site scripting
012         */
013        public boolean isScriptProtected();
014    
015        /**
016         * transform the string values of the scope do a script protecting way
017         */
018        public void setScriptProtecting(boolean scriptProtecting);
019        
020    }