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 RejectionReason
RejectionReason. 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 void
MockApnsServerListener. handlePushNotificationRejected(Http2Headers headers, ByteBuf payload, RejectionReason rejectionReason, Date deviceTokenExpirationTimestamp)
Indicates that a push notification has been rejected by the mock server.abstract void
ParsingMockApnsServerListenerAdapter. handlePushNotificationRejected(ApnsPushNotification pushNotification, RejectionReason rejectionReason, Date deviceTokenExpirationTimestamp)
Handles a parsed push notification accepted by a mock server.void
ParsingMockApnsServerListenerAdapter. handlePushNotificationRejected(Http2Headers headers, ByteBuf payload, RejectionReason rejectionReason, Date deviceTokenExpirationTimestamp)
Parses a push notification rejected by a mock APNs server into anApnsPushNotification
instance 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.
-