blob: 9a14bb549c507ff656598c88947f3dbe3eb20053 [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.builds.internal.core.operations;
import java.util.List;
import org.eclipse.mylyn.builds.core.IBuildModel;
import org.eclipse.mylyn.builds.core.IBuildPlan;
/**
* @author Steffen Pingel
*/
public class RefreshRequest {
private final IBuildModel model;
/**
* Private field used by {@link RefreshSession} to track stale plans on a request basis.
*/
List<IBuildPlan> stalePlans;
final List<IBuildPlan> plansToRefresh;
public RefreshRequest(IBuildModel model, List<IBuildPlan> plansToRefresh) {
this.model = model;
this.plansToRefresh = plansToRefresh;
}
public RefreshRequest(IBuildModel model) {
this(model, null);
}
public IBuildModel getModel() {
return model;
}
}