* @throws SynchronizationException if an error occurred while performing the operation.
*/
public static void checkIn(UserRegistry registry, String filePath, String registryPath,
boolean ignoreConflicts, boolean forcedCheckIn)
throws SynchronizationException {
CheckInCommand operation =
new CheckInCommand(null, filePath, registryPath, registry.getUserName(), true,
ignoreConflicts, !forcedCheckIn);
operation.execute(registry);
}