@@ -593,10 +593,7 @@ public PushResult sendIosNotificationWithRegistrationID(JsonObject alert, SMS sm
593593
594594
595595 // ---------------------- shortcuts - message
596-
597- /**
598- * Shortcut
599- */
596+
600597 public PushResult sendMessageAll (String msgContent ) throws APIConnectionException , APIRequestException {
601598 PushPayload payload = PushPayload .messageAll (msgContent );
602599 return _pushClient .sendPush (payload );
@@ -616,10 +613,7 @@ public PushResult sendMessageAll(String msgContent, SMS sms) throws APIConnectio
616613 PushPayload payload = PushPayload .messageAll (msgContent , sms );
617614 return _pushClient .sendPush (payload );
618615 }
619-
620- /**
621- * Shortcut
622- */
616+
623617 public PushResult sendAndroidMessageWithAlias (String title , String msgContent , String ... alias )
624618 throws APIConnectionException , APIRequestException {
625619 PushPayload payload = PushPayload .newBuilder ()
@@ -658,10 +652,7 @@ public PushResult sendAndroidMessageWithAlias(String title, String msgContent, S
658652 .build ();
659653 return _pushClient .sendPush (payload );
660654 }
661-
662- /**
663- * Shortcut
664- */
655+
665656 public PushResult sendAndroidMessageWithRegistrationID (String title , String msgContent , String ... registrationID )
666657 throws APIConnectionException , APIRequestException {
667658 PushPayload payload = PushPayload .newBuilder ()
@@ -700,10 +691,7 @@ public PushResult sendAndroidMessageWithRegistrationID(String title, String msgC
700691 .build ();
701692 return _pushClient .sendPush (payload );
702693 }
703-
704- /**
705- * Shortcut
706- */
694+
707695 public PushResult sendIosMessageWithAlias (String title , String msgContent , String ... alias )
708696 throws APIConnectionException , APIRequestException {
709697 PushPayload payload = PushPayload .newBuilder ()
@@ -742,7 +730,7 @@ public PushResult sendIosMessageWithAlias(String title, String msgContent, SMS s
742730 .build ();
743731 return _pushClient .sendPush (payload );
744732 }
745-
733+
746734 public PushResult sendIosMessageWithRegistrationID (String title , String msgContent , String ... registrationID )
747735 throws APIConnectionException , APIRequestException {
748736 PushPayload payload = PushPayload .newBuilder ()
@@ -782,9 +770,6 @@ public PushResult sendIosMessageWithRegistrationID(String title, String msgConte
782770 return _pushClient .sendPush (payload );
783771 }
784772
785- /**
786- * Shortcut
787- */
788773 public PushResult sendMessageWithRegistrationID (String title , String msgContent , String ... registrationID )
789774 throws APIConnectionException , APIRequestException {
790775 PushPayload payload = PushPayload .newBuilder ()
0 commit comments