public class Base64DecoderStream extends FilterInputStream
| Modifier and Type | Field and Description | 
|---|---|
| protected byte[] | decodedChars | 
| protected int | decodedCount | 
| protected int | decodedIndex | 
| protected char[] | encodedChars | 
| protected boolean | ignoreErrors | 
in| Constructor and Description | 
|---|
| Base64DecoderStream(InputStream in) | 
| Modifier and Type | Method and Description | 
|---|---|
| int | available() | 
| boolean | markSupported() | 
| int | read() | 
| int | read(byte[] buffer,
    int offset,
    int length) | 
protected boolean ignoreErrors
protected char[] encodedChars
protected byte[] decodedChars
protected int decodedCount
protected int decodedIndex
public Base64DecoderStream(InputStream in)
public int read()
         throws IOException
read in class FilterInputStreamIOExceptionpublic int read(byte[] buffer,
                int offset,
                int length)
         throws IOException
read in class FilterInputStreamIOExceptionpublic boolean markSupported()
markSupported in class FilterInputStreampublic int available()
              throws IOException
available in class FilterInputStreamIOExceptionApache CXF