Retrieves the list of all the SSL security profiles and their properties.
ServerComponentVO SUPServerConfiguration.getSSLSecurityProfileConfigurations()
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
supServerConf.refresh();
for(ServerComponentVO scvo : supServerConf.getSSLSecurityProfileConfigurations()){
System.out.println(scvo.getID());
System.out.println(scvo.getType());
System.out.println(scvo.getProperties());
}