29 lines
701 B
Java
29 lines
701 B
Java
package javax.activation;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.io.OutputStream;
|
|
|
|
class DataHandlerDataSource implements DataSource {
|
|
DataHandler dataHandler = null;
|
|
|
|
public DataHandlerDataSource(DataHandler paramDataHandler) {
|
|
this.dataHandler = paramDataHandler;
|
|
}
|
|
|
|
public InputStream getInputStream() throws IOException {
|
|
return this.dataHandler.getInputStream();
|
|
}
|
|
|
|
public OutputStream getOutputStream() throws IOException {
|
|
return this.dataHandler.getOutputStream();
|
|
}
|
|
|
|
public String getContentType() {
|
|
return this.dataHandler.getContentType();
|
|
}
|
|
|
|
public String getName() {
|
|
return this.dataHandler.getName();
|
|
}
|
|
}
|