blob: 5d6ba1ee034e9fb6851c0f26cfe064035725767a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 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.internal.hudson.core.client;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
/**
* @author Steffen Pingel
*/
public class HudsonConfiguration implements Serializable {
private static final long serialVersionUID = 1L;
public Map<String, String> jobNameById = new HashMap<String, String>();
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append("HudsonConfiguration [jobNameById=");
builder.append(jobNameById);
builder.append("]");
return builder.toString();
}
}