put(H2HEncryptionUtil.key2String(locationKey), contentKey, content, protectionKey);
}
protected void put(String locationKey, String contentKey, NetworkContent content, KeyPair protectionKeys)
throws PutFailedException {
Parameters parameters = new Parameters().setLocationKey(locationKey).setContentKey(contentKey)
.setVersionKey(content.getVersionKey()).setData(content).setProtectionKeys(protectionKeys)
.setTTL(content.getTimeToLive());
put(parameters);
}