Source code: org/finj/filter/LocalDataFilterInputStream.java
1 package org.finj.filter;
2
3 import java.io.FilterInputStream;
4 import java.io.InputStream;
5 import java.io.IOException;
6
7 /**
8 * Filter to be placed on <CODE>InputStream</CODE> when downloading
9 * data in <CODE>org.finj.FTPConstants.LOCAL_DATA_TYPE</CODE>.
10 *
11 * NB : I have absolutely NO idea of the way this should be implemented !!
12 *
13 * FIXME : mention default values.
14 *
15 * Copyright (C)
16 *
17 * This library is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU Lesser General Public
19 * License as published by the Free Software Foundation; either
20 * version 2.1 of the License, or (at your option) any later version.
21 *
22 * This library is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 * Lesser General Public License for more details.
26 *
27 * You should have received a copy of the GNU Lesser General Public
28 * License along with this library; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 *
31 * @author Javier Iglesias -- jiglesias@users.sourceforge.net
32 * @version $Id: LocalDataFilterInputStream.java,v 1.1.1.1 2003/05/12 16:37:27 jiglesia Exp $
33 */
34 public class LocalDataFilterInputStream extends FilterInputStream {
35
36 /**
37 *
38 * @since v1.0.2
39 */
40 public LocalDataFilterInputStream ( InputStream in ) {
41 super(in);
42 }
43
44 }