ewe.net
Class URLConnection

java.lang.Object
  extended byewe.net.URLConnection

public abstract class URLConnection
extends Object

This Class has not yet been implemented. However the HttpConnection class does implement the Http protocol and you can use that class to perform GET or POST operations to an Http server.


Field Summary
protected  boolean connected
           
protected  boolean doInput
           
protected  boolean doOutput
           
 
Constructor Summary
URLConnection()
           
 
Method Summary
abstract  void connect()
           
abstract  Object getContent()
           
abstract  int getContentLength()
           
 boolean getDoInput()
           
 boolean getDoOutput()
           
abstract  OutputStream getOutputStream()
           
 void setDoInput(boolean doInput)
           
 void setDoOutput(boolean doOutput)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, toString
 

Field Detail

connected

protected boolean connected

doInput

protected boolean doInput

doOutput

protected boolean doOutput
Constructor Detail

URLConnection

public URLConnection()
Method Detail

getContentLength

public abstract int getContentLength()

getOutputStream

public abstract OutputStream getOutputStream()
                                      throws IOException
Throws:
IOException

connect

public abstract void connect()
                      throws IOException
Throws:
IOException

getContent

public abstract Object getContent()
                           throws IOException
Throws:
IOException

setDoInput

public void setDoInput(boolean doInput)

setDoOutput

public void setDoOutput(boolean doOutput)

getDoInput

public boolean getDoInput()

getDoOutput

public boolean getDoOutput()