Uses of Class
com.eatthepath.pushy.apns.server.RejectionReason
-
Packages that use RejectionReason Package Description com.eatthepath.pushy.apns.server Contains classes and interfaces for working with mock APNs servers. -
-
Uses of RejectionReason in com.eatthepath.pushy.apns.server
Methods in com.eatthepath.pushy.apns.server that return RejectionReason Modifier and Type Method Description static RejectionReasonRejectionReason. valueOf(String name)Returns the enum constant of this type with the specified name.static RejectionReason[]RejectionReason. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.eatthepath.pushy.apns.server with parameters of type RejectionReason Modifier and Type Method Description voidMockApnsServerListener. handlePushNotificationRejected(Http2Headers headers, ByteBuf payload, RejectionReason rejectionReason, Date deviceTokenExpirationTimestamp)Indicates that a push notification has been rejected by the mock server.abstract voidParsingMockApnsServerListenerAdapter. handlePushNotificationRejected(ApnsPushNotification pushNotification, RejectionReason rejectionReason, Date deviceTokenExpirationTimestamp)Handles a parsed push notification accepted by a mock server.voidParsingMockApnsServerListenerAdapter. handlePushNotificationRejected(Http2Headers headers, ByteBuf payload, RejectionReason rejectionReason, Date deviceTokenExpirationTimestamp)Parses a push notification rejected by a mock APNs server into anApnsPushNotificationinstance for further processing byParsingMockApnsServerListenerAdapter.handlePushNotificationRejected(ApnsPushNotification, RejectionReason, Date).Constructors in com.eatthepath.pushy.apns.server with parameters of type RejectionReason Constructor Description RejectedNotificationException(RejectionReason rejectionReason)Constructs a new rejected notification exception with the given rejection reason and notification identifier.
-