001    package railo.runtime.net.proxy;
002    
003    import java.io.Serializable;
004    
005    public interface ProxyData extends Serializable {
006            
007            public void release();
008            
009            /**
010             * @return the password
011             */
012            public String getPassword();
013            
014            /**
015             * @param password the password to set
016             */
017            public void setPassword(String password);
018            
019            /**
020             * @return the port
021             */
022            public int getPort();
023            
024            /**
025             * @param port the port to set
026             */
027            public void setPort(int port);
028            
029            /**
030             * @return the server
031             */
032            public String getServer();
033            
034            /**
035             * @param server the server to set
036             */
037            public void setServer(String server);
038            
039            /**
040             * @return the username
041             */
042            public String getUsername();
043            
044            /**
045             * @param username the username to set
046             */
047            public void setUsername(String username);
048    }