if (bundles != null) {
for (ConnectorInfo bundle : bundles) {
ConnBundleTO connectorBundleTO = new ConnBundleTO();
connectorBundleTO.setDisplayName(bundle.getConnectorDisplayName());
ConnectorKey key = bundle.getConnectorKey();
LOG.debug("\nBundle name: {}" + "\nBundle version: {}" + "\nBundle class: {}", new Object[]{
key.getBundleName(), key.getBundleVersion(), key.getConnectorName()});
connectorBundleTO.setBundleName(key.getBundleName());
connectorBundleTO.setConnectorName(key.getConnectorName());
connectorBundleTO.setVersion(key.getBundleVersion());
ConfigurationProperties properties = bundleManager.getConfigurationProperties(bundle);
for (String propName : properties.getPropertyNames()) {
ConnConfPropSchema connConfPropSchema = new ConnConfPropSchema();