Class NoOpSigner

  • All Implemented Interfaces:
    Presigner, Signer

    @Deprecated
    public final class NoOpSigner
    extends Object
    implements Signer, Presigner
    Deprecated.
    Replaced by software.amazon.awssdk.http.auth.spi.signer.HttpSigner#doNotSign() in 'http-auth-spi'.
    A No op implementation of Signer and Presigner interfaces that returns the input SdkHttpFullRequest without modifications.
    • Constructor Detail

      • NoOpSigner

        public NoOpSigner()
        Deprecated.
    • 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.
        Specified by:
        presign in interface Presigner
        Parameters:
        request - The request to presign
        executionAttributes - Contains the attributes required for pre signing the request
        Returns:
        A pre signed version of the input 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.
        Specified by:
        sign in interface Signer
        Parameters:
        request - The request to sign
        executionAttributes - Contains the attributes required for signing the request
        Returns:
        A signed version of the input request