Interface TrailerProvider
-
- All Superinterfaces:
Resettable
- All Known Implementing Classes:
ChecksumTrailerProvider,SigV4aTrailerProvider,SigV4TrailerProvider
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface TrailerProvider extends Resettable
A functional interface for defining a trailer, where the trailer is a header pair.A trailer usually depends on the chunk-data itself (checksum, signature, etc.), but is not required to. Per RFC-7230, the chunked trailer section is defined as:
trailer-part = *( header-field CRLF )An implementation of this interface is specifically an element of thetrailer-part. Therefore, all occurrences ofTrailerProvider's make up thetrailer-part.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Pair<String,List<String>>get()-
Methods inherited from interface software.amazon.awssdk.http.auth.aws.internal.signer.chunkedencoding.Resettable
reset
-
-