Interface InputFile<T>
-
- All Known Implementing Classes:
ExternalInputFile
,IdInputFile
,LocalInputFile
public interface InputFile<T>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
InputFile.Serializer
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
attachTo(okhttp3.MultipartBody.Builder builder)
T
getData()
java.lang.String
getIdentifier()
Identifier for the InputFile If non-null, then this will use the attach protocol and call the attachTo methoddefault boolean
isAttachable()
-
-
-
Method Detail
-
getData
T getData()
-
getIdentifier
java.lang.String getIdentifier()
Identifier for the InputFile If non-null, then this will use the attach protocol and call the attachTo method
-
isAttachable
default boolean isAttachable()
-
attachTo
default void attachTo(okhttp3.MultipartBody.Builder builder)
-
-