218219220221222223224225226
} return config.getName(); } catch (ConfigException ce) { throw new SynchronizationException("Unable to resolve configuration name"); } }
86878889909192939495
// sets the config context sCtx.setConfigContext(ctx); } catch (Exception e) { String msg = _localStrMgr.getString("SynchCtxCreationError"); throw new SynchronizationException(msg, e); } return sCtx; }
117118119120121122123124125126
client = (SynchronizationClient) constructor.newInstance(new Object[] {remoteServerName}); } catch (Exception e) { String msg = _localStrMgr.getString("SynchClientCreationError"); throw new SynchronizationException(msg, e); } return client; }