diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-02-25 17:55:09 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-25 17:55:09 +1300 |
commit | e4aa15f0eb0646d6158fd8386f8f9c5477db6bfe (patch) | |
tree | 05c597d59b9dde5199721e0076a372cfbceab419 /src/org/traccar/api/resource/NotificationResource.java | |
parent | 981ab9d051d0b84cdc256fa48883f2c214e8bc3c (diff) | |
parent | e8500e8f6c440277d60e0418ab6a82f4bf80b887 (diff) | |
download | trackermap-server-e4aa15f0eb0646d6158fd8386f8f9c5477db6bfe.tar.gz trackermap-server-e4aa15f0eb0646d6158fd8386f8f9c5477db6bfe.tar.bz2 trackermap-server-e4aa15f0eb0646d6158fd8386f8f9c5477db6bfe.zip |
Merge pull request #2942 from Abyss777/smpp
Implement SMS notifications with help of smpp protocol
Diffstat (limited to 'src/org/traccar/api/resource/NotificationResource.java')
-rw-r--r-- | src/org/traccar/api/resource/NotificationResource.java | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/org/traccar/api/resource/NotificationResource.java b/src/org/traccar/api/resource/NotificationResource.java index 03f7e4ba0..dee972607 100644 --- a/src/org/traccar/api/resource/NotificationResource.java +++ b/src/org/traccar/api/resource/NotificationResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2016 Anton Tananaev (anton@traccar.org) + * Copyright 2016 - 2017 Anton Tananaev (anton@traccar.org) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -33,6 +33,12 @@ import org.traccar.api.BaseResource; import org.traccar.model.Event; import org.traccar.model.Notification; import org.traccar.notification.NotificationMail; +import org.traccar.notification.NotificationSms; + +import com.cloudhopper.smpp.type.RecoverablePduException; +import com.cloudhopper.smpp.type.SmppChannelException; +import com.cloudhopper.smpp.type.SmppTimeoutException; +import com.cloudhopper.smpp.type.UnrecoverablePduException; @Path("users/notifications") @Produces(MediaType.APPLICATION_JSON) @@ -62,8 +68,10 @@ public class NotificationResource extends BaseResource { @Path("test") @POST - public Response testMail() throws MessagingException { + public Response testMessage() throws MessagingException, RecoverablePduException, + UnrecoverablePduException, SmppTimeoutException, SmppChannelException, InterruptedException { NotificationMail.sendMailSync(getUserId(), new Event("test", 0), null); + NotificationSms.sendSmsSync(getUserId(), new Event("test", 0), null); return Response.noContent().build(); } |