001    package railo.runtime.db;
002    
003    public interface DataSourcePro extends DataSource {
004            /**
005         * @return Returns the connection string with NOT replaced placeholders.
006         */
007        public String getConnectionString();
008    
009        /**
010         * @return Returns the connection string with replaced placeholders.
011         */
012        public String getConnectionStringTranslated();
013    
014        /**
015         * @return unique id of the DataSource
016         */
017        public String id();
018    }