blob: d23cf0ebbd21f266aa42acfba129d1170756123d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.tasks.tests.connector;
import org.eclipse.mylyn.internal.tasks.core.RepositoryQuery;
/**
* @author Mik Kersten
*/
public class MockRepositoryQuery extends RepositoryQuery {
public String MOCK_QUERY_URL = MockRepositoryConnector.REPOSITORY_URL + ".query";
public MockRepositoryQuery(String description) {
super(MockRepositoryConnector.REPOSITORY_KIND, description);
super.setUrl(MOCK_QUERY_URL);
super.setRepositoryUrl(MockRepositoryConnector.REPOSITORY_URL);
}
public MockRepositoryQuery(String description, String url) {
super(MockRepositoryConnector.REPOSITORY_KIND, description);
super.setUrl(url);
}
@Override
public String getConnectorKind() {
return "mock";
}
}