001 package railo.runtime.config; 002 003 import railo.runtime.lock.LockManager; 004 005 /** 006 * Web Context 007 */ 008 public interface ConfigWeb extends Config { 009 010 /** 011 * @return lockmanager 012 */ 013 public abstract LockManager getLockManager(); 014 015 /** 016 * @return return if is allowed to define request timeout via URL 017 */ 018 public abstract boolean isAllowURLRequestTimeout(); 019 020 public abstract String getServerId(); 021 022 023 }