001    package railo.runtime.user;
002    
003    
004    /**
005     * Defines a Credentials, a User Information
006     */
007    public interface Credentials {
008        
009        /**
010         * @return returns the username
011         */
012        public String getUsername();
013        
014        /**
015         * @return returns the password
016         */
017        public String getPassword();
018    
019    }