Skip to content

Commit 61e81fe

Browse files
author
Patel, Mihir
committed
Library updates with latest documentation, testing and additional features.
1 parent 7020fb3 commit 61e81fe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1931
-589
lines changed

src/main/java/com/amazonaws/sqsjms/AmazonSQSClientJMSWrapper.java renamed to src/main/java/com/amazon/sqs/javamessaging/AmazonSQSMessagingClientWrapper.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* express or implied. See the License for the specific language governing
1313
* permissions and limitations under the License.
1414
*/
15-
package com.amazonaws.sqsjms;
15+
package com.amazon.sqs.javamessaging;
1616

1717
import java.util.HashSet;
1818
import java.util.Set;
@@ -49,8 +49,8 @@
4949
* <code>AmazonServiceException</code> and <code>AmazonClientException</code> into
5050
* JMSException/JMSSecurityException.
5151
*/
52-
public class AmazonSQSClientJMSWrapper {
53-
private static final Log LOG = LogFactory.getLog(AmazonSQSClientJMSWrapper.class);
52+
public class AmazonSQSMessagingClientWrapper {
53+
private static final Log LOG = LogFactory.getLog(AmazonSQSMessagingClientWrapper.class);
5454

5555
private static final Set<String> SECURITY_EXCEPTION_ERROR_CODES;
5656
static {
@@ -74,7 +74,7 @@ public class AmazonSQSClientJMSWrapper {
7474
* @throws JMSException
7575
* if the client is null
7676
*/
77-
public AmazonSQSClientJMSWrapper(AmazonSQS amazonSQSClient) throws JMSException {
77+
public AmazonSQSMessagingClientWrapper(AmazonSQS amazonSQSClient) throws JMSException {
7878
if (amazonSQSClient == null) {
7979
throw new JMSException("Amazon SQS client cannot be null");
8080
}
@@ -343,8 +343,6 @@ public ReceiveMessageResult receiveMessage(ReceiveMessageRequest receiveMessageR
343343
* @param changeMessageVisibilityRequest
344344
* Container for the necessary parameters to execute the
345345
* changeMessageVisibility service method on AmazonSQS.
346-
* @return The response from the changeMessageVisibility service method, as
347-
* returned by AmazonSQS.
348346
* @throws JMSException
349347
*/
350348
public void changeMessageVisibility(ChangeMessageVisibilityRequest changeMessageVisibilityRequest) throws JMSException {

src/main/java/com/amazonaws/sqsjms/PrefetchManager.java renamed to src/main/java/com/amazon/sqs/javamessaging/PrefetchManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* express or implied. See the License for the specific language governing
1313
* permissions and limitations under the License.
1414
*/
15-
package com.amazonaws.sqsjms;
15+
package com.amazon.sqs.javamessaging;
1616

1717
/**
1818
* This interface is helper to notify when the prefetchThread should be resuming

0 commit comments

Comments
 (0)