Package com.gentlyweb.utils
Class URLDataSource
- java.lang.Object
-
- com.gentlyweb.utils.URLDataSource
-
- All Implemented Interfaces:
javax.activation.DataSource
public class URLDataSource extends Object implements javax.activation.DataSource
-
-
Constructor Summary
Constructors Constructor Description URLDataSource(URL url)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetContentType()InputStreamgetInputStream()StringgetName()OutputStreamgetOutputStream()
-
-
-
Constructor Detail
-
URLDataSource
public URLDataSource(URL url)
-
-
Method Detail
-
getInputStream
public InputStream getInputStream() throws IOException
- Specified by:
getInputStreamin interfacejavax.activation.DataSource- Throws:
IOException
-
getOutputStream
public OutputStream getOutputStream() throws IOException
- Specified by:
getOutputStreamin interfacejavax.activation.DataSource- Throws:
IOException
-
getContentType
public String getContentType()
- Specified by:
getContentTypein interfacejavax.activation.DataSource
-
getName
public String getName()
- Specified by:
getNamein interfacejavax.activation.DataSource
-
-