Interface MultiPartRequest
-
- All Superinterfaces:
HttpRequest
- All Known Implementing Classes:
BaseMultipartRequest
public interface MultiPartRequest extends HttpRequest
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ByteArrayPart>getByteArrayParts()List<InputStreamPart>getInputStreams()StringBodyPartgetStringBodyPart()MultiPartRequestwithByteArrayPart(ByteArrayPart byteArrayPart)MultiPartRequestwithInputStreamPart(InputStreamPart inputStream)MultiPartRequestwithStringBodyPart(StringBodyPart bodyPart)-
Methods inherited from interface com.adobe.pdfservices.operation.internal.http.HttpRequest
authenticate, forceAuthenticate, getAuthenticator, getAuthMethod, getConfig, getEntity, getFinalUri, getHeaders, getHttpMethod, getRequestKey, getRequestType, getTemplateString, withAcceptType, withAuthenticationMethod, withAuthenticator, withBody, withConfig, withContentType, withHeader, withHeaders, withRequestKey, withTemplate, withUriParam, withUrlEncodedFormParams
-
-
-
-
Method Detail
-
withByteArrayPart
MultiPartRequest withByteArrayPart(ByteArrayPart byteArrayPart)
-
withStringBodyPart
MultiPartRequest withStringBodyPart(StringBodyPart bodyPart)
-
withInputStreamPart
MultiPartRequest withInputStreamPart(InputStreamPart inputStream)
-
getByteArrayParts
List<ByteArrayPart> getByteArrayParts()
-
getStringBodyPart
StringBodyPart getStringBodyPart()
-
getInputStreams
List<InputStreamPart> getInputStreams()
-
-