Class NoOpSigner
- java.lang.Object
-
- software.amazon.awssdk.core.signer.NoOpSigner
-
@Deprecated public final class NoOpSigner extends Object implements Signer, Presigner
Deprecated.Replaced bysoftware.amazon.awssdk.http.auth.spi.signer.HttpSigner#doNotSign()
in 'http-auth-spi'.A No op implementation of Signer and Presigner interfaces that returns the inputSdkHttpFullRequest
without modifications.
-
-
Constructor Summary
Constructors Constructor Description NoOpSigner()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description SdkHttpFullRequest
presign(SdkHttpFullRequest request, ExecutionAttributes executionAttributes)
Deprecated.Method that takes in an request and returns a pre signed version of the request.SdkHttpFullRequest
sign(SdkHttpFullRequest request, ExecutionAttributes executionAttributes)
Deprecated.Method that takes in an request and returns a signed version of the request.-
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.core.signer.Signer
credentialType
-
-
-
-
Method Detail
-
presign
public SdkHttpFullRequest presign(SdkHttpFullRequest request, ExecutionAttributes executionAttributes)
Deprecated.Description copied from interface:Presigner
Method that takes in an request and returns a pre signed version of the request.
-
sign
public SdkHttpFullRequest sign(SdkHttpFullRequest request, ExecutionAttributes executionAttributes)
Deprecated.Description copied from interface:Signer
Method that takes in an request and returns a signed version of the request.
-
-