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

com.king.platform.net.http.BuiltMultiPart Maven / Gradle / Ivy

There is a newer version: 3.0.26
Show newest version
package com.king.platform.net.http;


import com.king.platform.net.http.netty.request.multipart.MultiPartEntry;

import java.util.List;

public class BuiltMultiPart {
	private final List parts;
	private final byte[] boundary;

	public BuiltMultiPart(List parts, byte[] boundary) {
		this.parts = parts;
		this.boundary = boundary;
	}

	public List getParts() {
		return parts;
	}

	public byte[] getBoundary() {
		return boundary;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy