このJavaコードをJRubyでどのように表現できますか?
// Convert the store to a certificate chain
CertStore store = response.getCertStore();
Collection<? extends Certificate> certs = store
.getCertificates(null);
Certificate[] chain = new Certificate[certs.size()];
int i = 0;
for (Certificate certificate : certs) {
chain[i++] = certificate;
}
私はJRuby内に「ストア」を持っており、コレクションとして認識されています。
例えば
puts store.type
#Collection