File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/internal/signer Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 1515
1616package software .amazon .awssdk .http .auth .aws .internal .signer ;
1717
18- import software .amazon .awssdk .annotations .Immutable ;
1918import software .amazon .awssdk .annotations .SdkInternalApi ;
2019import software .amazon .awssdk .http .SdkHttpRequest ;
2120
2221/**
2322 * A container for data produced during and as a result of the SigV4 request signing process.
2423 */
2524@ SdkInternalApi
26- @ Immutable
25+ // TODO(sra-identity-auth): This is currently not @Immutable because signedRequest is a Builder. Is Builder needed? If it could
26+ // hold reference to SdkHttpRequest instead, this class would be @Immutable.
27+ // TODO(sra-identity-auth): Consider if we can rename this to convey something more. maybe,
28+ // V4RequestSigningResult/V4RequestSigningResultData? Note there is V4aContext similarly.
2729public final class V4Context {
2830 private final String contentHash ;
2931 private final byte [] signingKey ;
You can’t perform that action at this time.
0 commit comments