blob: 9a2937f650dc3065e8efbd8f8770c07cf9594d08 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ats.config.demo.artifact;
import org.eclipse.osee.ats.artifact.TeamWorkFlowArtifact;
import org.eclipse.osee.framework.skynet.core.artifact.ArtifactFactory;
import org.eclipse.osee.framework.skynet.core.artifact.ArtifactType;
import org.eclipse.osee.framework.skynet.core.artifact.Branch;
import org.eclipse.osee.support.test.util.TestUtil;
/**
* @author Donald G. Dunne
*/
public class DemoTestTeamWorkflowArtifact extends TeamWorkFlowArtifact {
public static String ARTIFACT_NAME = TestUtil.DEMO_TEST_TEAM_WORKFLOW_ARTIFACT;
/**
* @param parentFactory
* @param guid
* @param humanReadableId
* @param branch
*/
public DemoTestTeamWorkflowArtifact(ArtifactFactory parentFactory, String guid, String humanReadableId, Branch branch, ArtifactType artifactType) {
super(parentFactory, guid, humanReadableId, branch, artifactType);
}
}