Uses of Class
com.eatthepath.pushy.apns.auth.ApnsSigningKey
-
Packages that use ApnsSigningKey Package Description com.eatthepath.pushy.apns Contains classes and interfaces for interacting with the Apple Push Notification service (APNs).com.eatthepath.pushy.apns.auth Contains classes for working with APNs keys. -
-
Uses of ApnsSigningKey in com.eatthepath.pushy.apns
Methods in com.eatthepath.pushy.apns with parameters of type ApnsSigningKey Modifier and Type Method Description ApnsClientBuilder
ApnsClientBuilder. setSigningKey(ApnsSigningKey signingKey)
Sets the signing key for the client under construction. -
Uses of ApnsSigningKey in com.eatthepath.pushy.apns.auth
Methods in com.eatthepath.pushy.apns.auth that return ApnsSigningKey Modifier and Type Method Description static ApnsSigningKey
ApnsSigningKey. loadFromInputStream(InputStream inputStream, String teamId, String keyId)
Loads a signing key from the given input stream.static ApnsSigningKey
ApnsSigningKey. loadFromPkcs8File(File pkcs8File, String teamId, String keyId)
Loads a signing key from the given PKCS#8 file.Constructors in com.eatthepath.pushy.apns.auth with parameters of type ApnsSigningKey Constructor Description AuthenticationToken(ApnsSigningKey signingKey, Date issuedAt)
Constructs a new authentication token using the given signing key (and associated metadata) issued at the given date.
-