blob: 82c5b4bfe1816a1061e7fd961505bd6e44b7177d [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.framework.skynet.core.artifact;
import java.util.Collection;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.osee.framework.db.connection.exception.OseeCoreException;
import org.eclipse.osee.framework.skynet.core.internal.Activator;
/**
* @author Donald G. Dunne
*/
public class ArtifactCheck implements IArtifactCheck {
public static final IStatus OK_STATUS = new Status(IStatus.OK, Activator.PLUGIN_ID, null);
/* (non-Javadoc)
* @see org.eclipse.osee.framework.skynet.core.artifact.IArtifactCheck#isDeleteable(java.util.Collection)
*/
@Override
public IStatus isDeleteable(Collection<Artifact> artifacts) throws OseeCoreException {
return OK_STATUS;
}
/* (non-Javadoc)
* @see org.eclipse.osee.framework.skynet.core.artifact.IArtifactCheck#isModifiable(java.util.Collection, java.util.Collection)
*/
@Override
public IStatus isRenamable(Collection<Artifact> artifacts) throws OseeCoreException {
return OK_STATUS;
}
}