All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.afrozaar.wordpress.wpapi.v2.util.FilenameWrapperByteArrayResource Maven / Gradle / Ivy

There is a newer version: 4.8.3
Show newest version
package com.afrozaar.wordpress.wpapi.v2.util;

import org.springframework.core.io.ByteArrayResource;

public class FilenameWrapperByteArrayResource extends ByteArrayResource {
    final String fileName;

    public FilenameWrapperByteArrayResource(byte[] byteArray, String fileName) {
        super(byteArray);
        this.fileName = fileName;
    }

    public FilenameWrapperByteArrayResource(byte[] byteArray, String description, String fileName) {
        super(byteArray, description);
        this.fileName = fileName;
    }

    @Override
    public String getFilename() {
        return fileName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy