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 classInputFile.Serializer
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidattachTo(okhttp3.MultipartBody.Builder builder)TgetData()java.lang.StringgetIdentifier()Identifier for the InputFile If non-null, then this will use the attach protocol and call the attachTo methoddefault booleanisAttachable()
-
-
-
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)
-
-