blob: c1838354a9ba54047d57d4ab13e55627cfbe3b26 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.common.componentcore.ui.internal.propertypage.verifier;
import java.util.ArrayList;
import org.eclipse.wst.common.componentcore.resources.IVirtualComponent;
import org.eclipse.wst.common.componentcore.resources.IVirtualReference;
import org.eclipse.wst.common.componentcore.ui.propertypage.AddModuleDependenciesPropertiesPage.ComponentResourceProxy;
import org.eclipse.wst.server.core.IRuntime;
public class DeploymentAssemblyVerifierData {
public DeploymentAssemblyVerifierData(IVirtualComponent component, IRuntime runtime, ArrayList<IVirtualReference> currentReferences,
ArrayList<ComponentResourceProxy> resourceMappings, boolean resourceMappingsChanged) {
super();
this.component = component;
this.runtime = runtime;
this.currentReferences = currentReferences;
this.resourceMappings = resourceMappings;
this.resourceMappingsChanged = resourceMappingsChanged;
}
private IVirtualComponent component;
private IRuntime runtime;
private ArrayList<IVirtualReference> currentReferences;
private ArrayList<ComponentResourceProxy> resourceMappings;
private boolean resourceMappingsChanged;
public IVirtualComponent getComponent() {
return component;
}
public void setComponent(IVirtualComponent component) {
this.component = component;
}
public IRuntime getRuntime() {
return runtime;
}
public void setRuntime(IRuntime runtime) {
this.runtime = runtime;
}
public ArrayList<IVirtualReference> getCurrentReferences() {
return currentReferences;
}
public void setCurrentReferences(ArrayList<IVirtualReference> currentReferences) {
this.currentReferences = currentReferences;
}
public ArrayList<ComponentResourceProxy> getResourceMappings() {
return resourceMappings;
}
public void setResourceMappings(ArrayList<ComponentResourceProxy> resourceMappings) {
this.resourceMappings = resourceMappings;
}
public boolean isResourceMappingsChanged() {
return resourceMappingsChanged;
}
public void setResourceMappingsChanged(boolean resourceMappingsChanged) {
this.resourceMappingsChanged = resourceMappingsChanged;
}
}