wt.util
Interface MPInputStreamIfc

All Known Implementing Classes:
MPInputStream, RMIMPInputStream

public interface MPInputStreamIfc


Method Summary
 int available()
           
 boolean containsBodyHeader(String s)
           
 String getBodyHeader(String s)
           
 Enumeration getBodyHeaders()
           
 String getEncoding()
           
 boolean hasMoreObjectBodies()
           
 int read()
           
 int read(byte[] b)
           
 int read(byte[] b, int off, int len)
           
 String readString()
           
 void setEncoding(String encoding)
           
 long skip(long n)
           
 

Method Detail

setEncoding

public void setEncoding(String encoding)

getEncoding

public String getEncoding()

hasMoreObjectBodies

public boolean hasMoreObjectBodies()
                            throws IOException
Throws:
IOException

getBodyHeaders

public Enumeration getBodyHeaders()

getBodyHeader

public String getBodyHeader(String s)

containsBodyHeader

public boolean containsBodyHeader(String s)

read

public int read()
         throws IOException
Throws:
IOException

read

public int read(byte[] b)
         throws IOException
Throws:
IOException

read

public int read(byte[] b,
                int off,
                int len)
         throws IOException
Throws:
IOException

skip

public long skip(long n)
          throws IOException
Throws:
IOException

available

public int available()

readString

public String readString()
                  throws IOException
Throws:
IOException