Updates the properties of the consolidated database configuration.
void SUPServerConfiguration.updateConsolidatedDatabaseConfiguration(ServerComponentVO serverComponent)
If successful, returns silently. If unsuccessful, returns SUPAdminException.
supServerConf.refresh(); ServerComponentVO scvo = supServerConf .getConsolidatedDatabaseConfiguration(); ServerComponentVO scvo_new = new ServerComponentVO(scvo.getID(), scvo.getType()); Map<String, String> properties = scvo.getProperties(); properties.put("cdb.username", "dba"); scvo_new.setProperties(properties); supServerConf.updateConsolidatedDatabaseConfiguration(scvo_new); supServerConf.commit();