Class MultipartPart
- java.lang.Object
-
- io.vertx.openapi.validation.analyser.MultipartPart
-
public class MultipartPart extends Object
-
-
Constructor Summary
Constructors Constructor Description MultipartPart(String name, String contentType, Buffer body)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Buffer
getBody()
String
getContentType()
String
getName()
int
hashCode()
static MultipartPart
parsePart(String rawPart)
static List<String>
parseParts(String body, String boundary)
-
-
-
Method Detail
-
parsePart
public static MultipartPart parsePart(String rawPart)
-
getName
public String getName()
-
getContentType
public String getContentType()
-
getBody
public Buffer getBody()
-
-