001    package railo.runtime.rest;
002    
003    public interface RestSettings {
004            public boolean getSkipCFCWithError();
005            
006            //public Resource[] getCfcLocations();
007    
008            /**
009             * return format of the request, ignored when format is defined as part of the call
010             * @return possible values are: UDF.RETURN_FORMAT_JSON, UDF.RETURN_FORMAT_WDDX, UDF.RETURN_FORMAT_SERIALIZE, UDF.RETURN_FORMAT_XML
011             */
012            public int getReturnFormat();
013    }