Class DefaultV4PayloadSigner
- java.lang.Object
-
- software.amazon.awssdk.http.auth.aws.internal.signer.DefaultV4PayloadSigner
-
- All Implemented Interfaces:
V4PayloadSigner
public class DefaultV4PayloadSigner extends Object implements V4PayloadSigner
A default implementation of a payload signer that is a no-op, since payloads are most commonly unsigned.
-
-
Constructor Summary
Constructors Constructor Description DefaultV4PayloadSigner()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ContentStreamProvidersign(ContentStreamProvider payload, V4RequestSigningResult requestSigningResult)Given a payload and result of request signing, sign the payload via the SigV4 process.org.reactivestreams.Publisher<ByteBuffer>signAsync(org.reactivestreams.Publisher<ByteBuffer> payload, V4RequestSigningResult requestSigningResult)Given a payload and result of request signing, sign the payload via the SigV4 process.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.http.auth.aws.internal.signer.V4PayloadSigner
beforeSigning
-
-
-
-
Method Detail
-
sign
public ContentStreamProvider sign(ContentStreamProvider payload, V4RequestSigningResult requestSigningResult)
Description copied from interface:V4PayloadSignerGiven a payload and result of request signing, sign the payload via the SigV4 process.- Specified by:
signin interfaceV4PayloadSigner
-
signAsync
public org.reactivestreams.Publisher<ByteBuffer> signAsync(org.reactivestreams.Publisher<ByteBuffer> payload, V4RequestSigningResult requestSigningResult)
Description copied from interface:V4PayloadSignerGiven a payload and result of request signing, sign the payload via the SigV4 process.- Specified by:
signAsyncin interfaceV4PayloadSigner
-
-