@Override
public void update(String newValue) throws OpenShiftException {
if (newValue == null) {
throw new OpenShiftException("Value for environment variable \"{0}\" not given.", name);
}
EnvironmentVariableResourceDTO environmentVariableResourceDTO =
new UpdateEnvironmentVariableRequest().execute(newValue);
updateEnvironmentVariable(environmentVariableResourceDTO);
/*
* This should be done in the IApplication, to break up this dependency
* on the entity, i.e. IEnvironmentVariable, on something that is