001    package railo.runtime.crypt;
002    
003    import java.io.IOException;
004    import java.io.OutputStream;
005    
006    /**
007     * 
008     */
009    public final class EncryptOutputStream extends OutputStream {
010    
011        /**
012         * @see java.io.OutputStream#close()
013         */
014        public void close() throws IOException {
015            super.close();
016        }
017        /**
018         * @see java.io.OutputStream#flush()
019         */
020        public void flush() throws IOException {
021            super.flush();
022        }
023        /**
024         * @see java.io.OutputStream#write(byte[], int, int)
025         */
026        public void write(byte[] b, int off, int len) throws IOException {
027            super.write(b, off, len);
028        }
029        /**
030         * @see java.io.OutputStream#write(byte[])
031         */
032        public void write(byte[] b) throws IOException {
033            super.write(b);
034        }
035        /**
036         * @see java.io.OutputStream#write(int)
037         */
038        public void write(int b) throws IOException {
039            
040        }
041    
042        public static void main(String[] args) {
043            
044        }
045    }