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

com.kanishka.net.model.MultiPartEntity Maven / Gradle / Ivy

The newest version!
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.kanishka.net.model;

import org.apache.http.entity.mime.content.ContentBody;

/**
 *
 * @author [email protected]
 */
public class MultiPartEntity {

    private String partName;
    private ContentBody entity;

    public MultiPartEntity() {
    }

    public MultiPartEntity(String partName, ContentBody entity) {
        this.partName = partName;
        this.entity = entity;
    }

    public String getPartName() {
        return partName;
    }

    public void setPartName(String partName) {
        this.partName = partName;
    }

    public ContentBody getEntity() {
        return entity;
    }

    public void setEntity(ContentBody entity) {
        this.entity = entity;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy