7677787980818283848586
return null; } private String getSecret(Secret secret, String key) { SecretItem item = secret.find(key); if (item == null) { throw new IllegalArgumentException("Secret not found: " + key); } return new String(item.getBytes(), Charsets.UTF_8); }