public class TSHttpsURLConnection extends java.lang.Object implements TSHttpsURLConnectionInterface
Constructor and Description |
---|
TSHttpsURLConnection()
Instantiates the class defined in porting.ts.HttpsURLConnection.class.1
|
TSHttpsURLConnection(java.lang.String sClass)
Instantiates the class defined by sClass
|
Modifier and Type | Method and Description |
---|---|
void |
disconnect()
Disconnect connection
|
java.lang.String |
getHeaderField(int num)
Returns the value for the nth header field.
|
java.lang.String |
getHeaderField(java.lang.String name)
Returns the value of the named header field.
|
java.io.InputStream |
getInputStream()
Returns an input stream that reads from the open connection
|
java.io.OutputStream |
getOutputStream()
Returns an Output stream that writes to the open connection
|
void |
init(java.net.URL url)
Initializes HttpsURLConnection
|
void |
setDoInput(boolean doInput)
Sets the value of the doInput field for this Connection
|
void |
setDoOutput(boolean doOutput)
Sets the value of the doOutput field for this Connection
|
void |
setRequestProperty(java.lang.String key,
java.lang.String value)
Sets the general request property.
|
void |
setUseCaches(boolean usecaches)
Sets the value of the useCaches field for this Connection
If the UseCaches flag on the connection is true, the connection
is allowed to use whatever caches it can.
|
public TSHttpsURLConnection()
public TSHttpsURLConnection(java.lang.String sClass)
sClass
- - this class is used to instantiate
implementation specific HttpsURLConnection classpublic void setDoInput(boolean doInput)
setDoInput
in interface TSHttpsURLConnectionInterface
doInput
- - the new value (the default is false)public void setDoOutput(boolean doOutput)
setDoOutput
in interface TSHttpsURLConnectionInterface
doOutput
- - the new value (the default is false)public void setUseCaches(boolean usecaches)
setUseCaches
in interface TSHttpsURLConnectionInterface
usecaches
- - the new value (the default is true)public void setRequestProperty(java.lang.String key, java.lang.String value)
setRequestProperty
in interface TSHttpsURLConnectionInterface
key
- - the keyword by which the request is knownvalue
- - the value associated with itpublic java.lang.String getHeaderField(java.lang.String name)
getHeaderField
in interface TSHttpsURLConnectionInterface
name
- - the name of the header field.public java.lang.String getHeaderField(int num)
getHeaderField
in interface TSHttpsURLConnectionInterface
num
- - Integer numpublic void disconnect()
disconnect
in interface TSHttpsURLConnectionInterface
public java.io.InputStream getInputStream() throws java.io.IOException
getInputStream
in interface TSHttpsURLConnectionInterface
java.io.IOException
public java.io.OutputStream getOutputStream() throws java.io.IOException
getOutputStream
in interface TSHttpsURLConnectionInterface
java.io.IOException
public void init(java.net.URL url) throws java.io.IOException
init
in interface TSHttpsURLConnectionInterface
url
- url used to open HttpsURLConnectionjava.io.IOException