// upgrade from v2, if the v2 instance had the ssl
// sub-elements to the jmx-connector elements (in the admin-service )
for (Config config : configs.getConfig()) {
AdminService service = config.getAdminService();
for( JmxConnector jmxConnector : service.getJmxConnector()){
Ssl sslElement = jmxConnector.getSsl();
if(sslElement != null) {
try {
ConfigSupport.apply(new SingleConfigCode<Ssl>() {
public Object run(Ssl ssl) throws PropertyVetoException,
TransactionFailure {