Skip to content

Commit 158c894

Browse files
committed
Fix pom descriptions
1 parent 83c1e8e commit 158c894

File tree

4 files changed

+23
-8
lines changed

4 files changed

+23
-8
lines changed

core/http-auth-aws-crt/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
<artifactId>http-auth-aws-crt</artifactId>
2929
<name>AWS Java SDK :: HTTP Auth AWS CRT</name>
3030
<description>
31-
The AWS SDK for Java - HTTP Auth AWS module contains interfaces and implementations for HTTP authentication
32-
specific to the AWS CRT.
31+
The AWS SDK for Java - HTTP Auth AWS module contains interfaces and implementations for generic HTTP
32+
authentication specific to the AWS CRT.
3333
</description>
3434
<url>https://aws.amazon.com/sdkforjava</url>
3535

core/http-auth-aws/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
<artifactId>http-auth-aws</artifactId>
2929
<name>AWS Java SDK :: HTTP Auth AWS</name>
3030
<description>
31-
The AWS SDK for Java - HTTP Auth AWS module contains interfaces and implementations for generic generic HTTP authentication
32-
specific to AWS.
31+
The AWS SDK for Java - HTTP Auth AWS module contains interfaces and implementations for generic HTTP
32+
authentication specific to AWS.
3333
</description>
3434
<url>https://aws.amazon.com/sdkforjava</url>
3535

core/http-auth-spi/src/main/java/software/amazon/awssdk/http/auth/spi/HttpSigner.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,6 @@ public interface HttpSigner {
4141
* @param request The request to sign, with async payload
4242
* @return A signed version of the input request
4343
*/
44-
SignedHttpRequest<? extends Publisher<? extends ByteBuffer>> signAsync(HttpSignRequest<? extends Publisher<? extends ByteBuffer>> request);
44+
SignedHttpRequest<? extends Publisher<? extends ByteBuffer>> signAsync(
45+
HttpSignRequest<? extends Publisher<? extends ByteBuffer>> request);
4546
}

core/http-auth/src/main/java/software/amazon/awssdk/http/auth/internal/DefaultBearerHttpSigner.java

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License").
5+
* You may not use this file except in compliance with the License.
6+
* A copy of the License is located at
7+
*
8+
* http://aws.amazon.com/apache2.0
9+
*
10+
* or in the "license" file accompanying this file. This file is distributed
11+
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12+
* express or implied. See the License for the specific language governing
13+
* permissions and limitations under the License.
14+
*/
15+
116
package software.amazon.awssdk.http.auth.internal;
217

18+
import java.nio.ByteBuffer;
319
import org.reactivestreams.Publisher;
420
import software.amazon.awssdk.annotations.SdkInternalApi;
521
import software.amazon.awssdk.http.ContentStreamProvider;
@@ -10,8 +26,6 @@
1026
import software.amazon.awssdk.identity.spi.TokenIdentity;
1127

1228

13-
import java.nio.ByteBuffer;
14-
1529
/**
1630
* A default implementation of {@link BearerHttpSigner}
1731
*/
@@ -34,7 +48,7 @@ public SignedHttpRequest<? extends ContentStreamProvider> sign(HttpSignRequest<?
3448

3549
@Override
3650
public SignedHttpRequest<? extends Publisher<? extends ByteBuffer>>
37-
signAsync(HttpSignRequest<? extends Publisher<? extends ByteBuffer>> request) {
51+
signAsync(HttpSignRequest<? extends Publisher<? extends ByteBuffer>> request) {
3852
return doSign(request);
3953
}
4054

0 commit comments

Comments
 (0)