Updates the server configuration for Relay Server.
void updateServerConfigurationForRelayServer(ServerComponentVO serverComponent) throws SUPAdminException;
If successful, returns silently. If unsuccessful, returns SUPAdminException.
// get
supServerConf.refresh();
ServerComponentVO componentVO = supServerConf
.getServerConfigurationForRelayServer();
System.out.println(componentVO.getProperties());
// update
componentVO.getProperties().put("relayserver.trusted_certs",
"Repository/Security/myRelayServerTrustedCert.cert");
supServerConf.updateServerConfigurationForRelayServer(componentVO);
supServerConf.commit();