Retrieve a list of SSL security profile configurations.
Collection<SUPConfigurationComponentVO> getSSLSecurityProfileConfigurations() throws SUPAdminException;
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
SUPConfiguration supConf = SUPObjectFactory
          .getSUPConfiguration(clusterContext);
supConf.refreshClusterConfiguration();
for(SUPConfigurationComponentVO scvo : supConf.getSSLSecurityProfileConfigurations()){   
   System.out.println(scvo.getID());   
   System.out.println(scvo.getType());   
   System.out.println(scvo.getProperties());
}