Package org.apache.cxf.attachment
Class ByteDataSource
- java.lang.Object
-
- org.apache.cxf.attachment.ByteDataSource
-
- All Implemented Interfaces:
javax.activation.DataSource
public class ByteDataSource extends Object implements javax.activation.DataSource
-
-
Constructor Summary
Constructors Constructor Description ByteDataSource(byte[] dataParam)
ByteDataSource(byte[] dataParam, int offsetParam, int lengthParam)
ByteDataSource(byte[] dataParam, String ct)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getContentType()
byte[]
getData()
InputStream
getInputStream()
String
getName()
OutputStream
getOutputStream()
void
setContentType(String contentTypeParam)
void
setData(byte[] dataParam)
void
setName(String nameParam)
-
-
-
Constructor Detail
-
ByteDataSource
public ByteDataSource(byte[] dataParam)
-
ByteDataSource
public ByteDataSource(byte[] dataParam, String ct)
-
ByteDataSource
public ByteDataSource(byte[] dataParam, int offsetParam, int lengthParam)
-
-
Method Detail
-
getData
public byte[] getData()
-
setData
public void setData(byte[] dataParam)
-
setContentType
public void setContentType(String contentTypeParam)
-
setName
public void setName(String nameParam)
-
getContentType
public String getContentType()
- Specified by:
getContentType
in interfacejavax.activation.DataSource
-
getInputStream
public InputStream getInputStream() throws IOException
- Specified by:
getInputStream
in interfacejavax.activation.DataSource
- Throws:
IOException
-
getName
public String getName()
- Specified by:
getName
in interfacejavax.activation.DataSource
-
getOutputStream
public OutputStream getOutputStream() throws IOException
- Specified by:
getOutputStream
in interfacejavax.activation.DataSource
- Throws:
IOException
-
-