Adds configuration for an SSL security profile.
void addSSLSecurityProfileConfiguration(ServerComponentVO serverComponent) throws SUPAdminException;
If successful, returns silently. If unsuccessful, returns SUPAdminException.
supServerConf.refresh();
ServerComponentVO scvo = supServerConf
.getSSLSecurityProfileConfigurations().iterator().next();
ServerComponentVO scvo_new = new ServerComponentVO(scvo.getID(), scvo.getType());
Map<String, String> properties = scvo.getProperties();
properties.put("sup.security.profile.auth", "domestic");
properties.put("sup.security.profile.name",
"<SSL security profile name>");
properties.put("sup.security.profile.key.alias",
"<SSL security key alias>");
scvo_new.setProperties(properties);
supServerConf.addSSLSecurityProfileConfiguration(scvo_new);
supServerConf.commit();