mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-21 10:17:59 +01:00
Use APNs signing keys instead of expiring certificates.
This commit is contained in:
committed by
Jon Chambers
parent
001a9310c3
commit
b1d11d4f69
@@ -24,11 +24,15 @@ public class ApnConfiguration {
|
||||
|
||||
@NotEmpty
|
||||
@JsonProperty
|
||||
private String pushCertificate;
|
||||
private String teamId;
|
||||
|
||||
@NotEmpty
|
||||
@JsonProperty
|
||||
private String pushKey;
|
||||
private String keyId;
|
||||
|
||||
@NotEmpty
|
||||
@JsonProperty
|
||||
private String signingKey;
|
||||
|
||||
@NotEmpty
|
||||
@JsonProperty
|
||||
@@ -37,12 +41,16 @@ public class ApnConfiguration {
|
||||
@JsonProperty
|
||||
private boolean sandbox = false;
|
||||
|
||||
public String getPushCertificate() {
|
||||
return pushCertificate;
|
||||
public String getTeamId() {
|
||||
return teamId;
|
||||
}
|
||||
|
||||
public String getPushKey() {
|
||||
return pushKey;
|
||||
public String getKeyId() {
|
||||
return keyId;
|
||||
}
|
||||
|
||||
public String getSigningKey() {
|
||||
return signingKey;
|
||||
}
|
||||
|
||||
public String getBundleId() {
|
||||
|
||||
Reference in New Issue
Block a user