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

org.jboss.resteasy.plugins.providers.multipart.OutputPart Maven / Gradle / Ivy

package org.jboss.resteasy.plugins.providers.multipart;

import java.lang.reflect.Type;

import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.MultivaluedMap;

import org.jboss.resteasy.specimpl.MultivaluedMapImpl;

/**
 * @author Bill Burke
 * @version $Revision: 1 $
 */
public class OutputPart {
    private MultivaluedMap headers = new MultivaluedMapImpl();
    private Object entity;
    private Class type;
    private Type genericType;
    private MediaType mediaType;
    private String filename;
    private boolean utf8Encode;

    public OutputPart(final Object entity, final Class type, final Type genericType, final MediaType mediaType) {
        this(entity, type, genericType, mediaType, null);
    }

    public OutputPart(final Object entity, final Class type, final Type genericType, final MediaType mediaType,
            final String filename) {
        this(entity, type, genericType, mediaType, null, false);
    }

    public OutputPart(final Object entity, final Class type, final Type genericType, final MediaType mediaType,
            final String filename, final boolean utf8Encode) {
        this.entity = entity;
        this.type = type;
        this.genericType = genericType;
        this.mediaType = mediaType;
        this.filename = filename;
        this.utf8Encode = utf8Encode;
    }

    public MultivaluedMap getHeaders() {
        return headers;
    }

    public Object getEntity() {
        return entity;
    }

    public Class getType() {
        return type;
    }

    public Type getGenericType() {
        return genericType;
    }

    public MediaType getMediaType() {
        return mediaType;
    }

    public String getFilename() {
        return filename;
    }

    public boolean isUtf8Encode() {
        return utf8Encode;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy