问题 I have this Codesnippet: schemeRegistry.register(new Scheme("https", factory, 443)); It says that the constructor for Scheme is deprecated, but I honestly didn't really understand which new method to use instead. Can someone show me a brief example on how to use it properly? the complete Code in which it is used looks like this: org.apache.http.conn.ssl.SSLSocketFactory factory = new org.apache.http.conn.ssl.SSLSocketFactory(clientStore, p12Password, trustStore); SchemeRegistry schemeRegistry