@PostConstruct
public void start() throws Exception {
ApnsServiceBuilder builder = APNS.newService();
InputStream in = _keystoreResource.getInputStream();
builder.withCert(in, _keystorePassword);
if (_production)
builder.withProductionDestination();
else
builder.withSandboxDestination();