if (synchronizations == null)
{
synchronizations = new ArrayList<SynchronizationInfo> ();
for (Map.Entry<Uid, String> me : delegate.getSynchronizations().entrySet())
synchronizations.add(new SynchronizationInfo(me.getKey(), me.getValue()));
}
return synchronizations;
}