javax.activation.DataContentHandler Java Examples

The following examples show how to use javax.activation.DataContentHandler. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AttachmentUtil.java    From cxf with Apache License 2.0 5 votes vote down vote up
@Override
public synchronized DataContentHandler createDataContentHandler(
        String mimeType) {
    DataContentHandler dch = super.createDataContentHandler(mimeType);
    if (dch == null) {
        dch = DEFAULT_COMMAND_MAP.createDataContentHandler(mimeType);
    }
    return dch;
}
 
Example #2
Source File: AttachmentUtil.java    From cxf with Apache License 2.0 5 votes vote down vote up
@Override
public DataContentHandler createDataContentHandler(String mimeType,
        DataSource ds) {
    DataContentHandler dch = super.createDataContentHandler(mimeType);
    if (dch == null) {
        dch = DEFAULT_COMMAND_MAP.createDataContentHandler(mimeType, ds);
    }
    return dch;
}