Uses of Enum
com.eatthepath.pushy.apns.server.RejectionReason
Packages that use RejectionReason
Package
Description
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 RejectionReasonModifier and TypeMethodDescriptionstatic RejectionReasonReturns 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 RejectionReasonModifier and TypeMethodDescriptionvoidMockApnsServerListener.handlePushNotificationRejected(Http2Headers headers, ByteBuf payload, RejectionReason rejectionReason, Instant deviceTokenExpirationTimestamp) Indicates that a push notification has been rejected by the mock server.abstract voidParsingMockApnsServerListenerAdapter.handlePushNotificationRejected(ApnsPushNotification pushNotification, RejectionReason rejectionReason, Instant deviceTokenExpirationTimestamp) Handles a parsed push notification accepted by a mock server.voidParsingMockApnsServerListenerAdapter.handlePushNotificationRejected(Http2Headers headers, ByteBuf payload, RejectionReason rejectionReason, Instant deviceTokenExpirationTimestamp) Parses a push notification rejected by a mock APNs server into anApnsPushNotificationinstance for further processing byParsingMockApnsServerListenerAdapter.handlePushNotificationRejected(ApnsPushNotification, RejectionReason, Instant).Constructors in com.eatthepath.pushy.apns.server with parameters of type RejectionReasonModifierConstructorDescriptionRejectedNotificationException(RejectionReason rejectionReason) Constructs a new rejected notification exception with the given rejection reason and notification identifier.