com.sun.jersey.core.impl.provider.entity
Class DataSourceProvider.ByteArrayDataSource

java.lang.Object
  extended by com.sun.jersey.core.impl.provider.entity.DataSourceProvider.ByteArrayDataSource
All Implemented Interfaces:
DataSource
Enclosing class:
DataSourceProvider

public static class DataSourceProvider.ByteArrayDataSource
extends Object
implements DataSource

Modified from javax.mail.util.ByteArrayDataSource A DataSource backed by a byte array. The byte array may be passed in directly, or may be initialized from an InputStream or a String.

Since:
JavaMail 1.4
Author:
John Mani, Bill Shannon, Max Spivak

Constructor Summary
DataSourceProvider.ByteArrayDataSource(InputStream is, String type)
           
 
Method Summary
 String getContentType()
           
 InputStream getInputStream()
           
 String getName()
           
 OutputStream getOutputStream()
           
 void setName(String name)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DataSourceProvider.ByteArrayDataSource

public DataSourceProvider.ByteArrayDataSource(InputStream is,
                                              String type)
                                       throws IOException
Throws:
IOException
Method Detail

getInputStream

public InputStream getInputStream()
                           throws IOException
Specified by:
getInputStream in interface DataSource
Throws:
IOException

getOutputStream

public OutputStream getOutputStream()
                             throws IOException
Specified by:
getOutputStream in interface DataSource
Throws:
IOException

getContentType

public String getContentType()
Specified by:
getContentType in interface DataSource

getName

public String getName()
Specified by:
getName in interface DataSource

setName

public void setName(String name)


Copyright © 2013 Oracle Corporation. All Rights Reserved.