blob: 4b174231676e54962f08e2011b1e3934483c1556 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 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.orcs.core.ds;
import org.eclipse.osee.framework.core.data.IArtifactType;
import org.eclipse.osee.framework.jdk.core.type.OseeCoreException;
/**
* @author Roberto E. Escobar
*/
public interface ArtifactDataFactory {
ArtifactData create(Long branch, IArtifactType artifactType, String guid) throws OseeCoreException;
ArtifactData create(Long branch, IArtifactType artifactType, String guid, long artifactId) throws OseeCoreException;
ArtifactData copy(Long destination, ArtifactData source) throws OseeCoreException;
ArtifactData clone(ArtifactData source) throws OseeCoreException;
ArtifactData introduce(Long destination, ArtifactData source) throws OseeCoreException;
}