Add a new SSL security profile configuration.
void addSSLSecurityProfileConfiguration(SUPConfigurationComponentVO serverComponent) throws SUPAdminException;
If successful, returns silently. If unsuccessful, throws SUPAdminException.
scvo = new SUPConfigurationComponentVO( SUPConfigurationComponentType.SSLSecurityProfile); Map<String, String> properties = scvo.getProperties(); properties.put("sup.security.profile.name", name); properties.put("securityCharacteristics", "strong"); properties.put("certificateLabel", "sample1"); scvo.setProperties(properties); supConf.addSSLSecurityProfileConfiguration(scvo); commit(supConf);