Skip to main content
summaryrefslogblamecommitdiffstats
blob: bf81cd653b8bd18e321624d3510990d63b8c7e30 (plain) (tree)














































                                                                                 
/*******************************************************************************
 * Copyright (c) 2009 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.tasks.core;

import org.eclipse.core.runtime.Assert;

/**
 * @author Steffen Pingel
 */
public class TaskRepositoryDelta {

	public enum Type {
		ALL, CREDENTIALS, PROPERTY, PROYX, OFFLINE
	};

	private final Type type;

	private final Object key;

	public TaskRepositoryDelta(Type type, Object key) {
		Assert.isNotNull(type);
		this.type = type;
		this.key = key;
	}

	public TaskRepositoryDelta(Type type) {
		this(type, null);
	}

	public Type getType() {
		return type;
	}

	public Object getKey() {
		return key;
	}

}

Back to the top