/** {@inheritDoc} */
public byte[] addDeploymentContent(String name, String runtimeName, InputStream stream) {
try {
return new AddDeploymentContentOperation(name, runtimeName, stream).executeForResult(getConnectionStrategy());
} catch (Exception e) {
throw new ManagementException("Failed to add deployment content.", e);
}
}