blob: c9b8dfeaf89d26e211086bb80562968e4a042bdd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2013 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.tasks.ui;
import org.eclipse.mylyn.internal.tasks.core.LocalRepositoryConnector;
import org.eclipse.mylyn.tasks.core.AbstractRepositoryMigrator;
import org.eclipse.mylyn.tasks.core.TaskRepository;
/**
* @author Robert Elves
* @since 3.4
*/
public class LocalRepositoryMigrator extends AbstractRepositoryMigrator {
@Override
public String getConnectorKind() {
return LocalRepositoryConnector.CONNECTOR_KIND;
}
@Override
public boolean migrateRepository(TaskRepository repository) {
if (repository.getCategory() == null) {
repository.setCategory(TaskRepository.CATEGORY_TASKS);
return true;
}
return false;
}
}