blob: dd06d1604faa57b18041e49558e5701c6b2b49b8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2012 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
* Sascha Scholz (SAP) - improvements
*******************************************************************************/
package org.eclipse.mylyn.internal.gerrit.core.client.compat;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import com.google.gerrit.common.data.GerritConfig;
/**
* @author Steffen Pingel
* @author Sascha Scholz
*/
public class GerritConfigX extends GerritConfig {
private List<CommentLink> commentLinks;
private String gitHttpUrl;
private Map<DownloadSchemeX, SchemeInfo> schemes;
public Map<DownloadSchemeX, SchemeInfo> getSchemes() {
return schemes;
}
public void setSchemes(Map<DownloadSchemeX, SchemeInfo> schemes) {
this.schemes = Collections.unmodifiableMap(schemes);
}
public List<CommentLink> getCommentLinks2() {
return commentLinks;
}
public String getGitHttpUrl() {
return gitHttpUrl;
}
}