blob: e053f0b7e2aaa5705f64913d0989eef030cbf2bc [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.define.blam.operation;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.osee.framework.skynet.core.access.AccessControlManager;
import org.eclipse.osee.framework.skynet.core.access.PermissionEnum;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
import org.eclipse.osee.framework.skynet.core.artifact.Branch;
import org.eclipse.osee.framework.skynet.core.artifact.BranchPersistenceManager;
import org.eclipse.osee.framework.skynet.core.artifact.search.ArtifactQuery;
import org.eclipse.osee.framework.ui.skynet.blam.BlamVariableMap;
import org.eclipse.osee.framework.ui.skynet.blam.operation.AbstractBlam;
/**
* @author Jeff C. Phillips
*/
public class AddEveryoneGroupToBranches extends AbstractBlam {
/* (non-Javadoc)
* @see org.eclipse.osee.framework.ui.skynet.blam.operation.BlamOperation#runOperation(org.eclipse.osee.framework.ui.skynet.blam.BlamVariableMap, org.eclipse.osee.framework.skynet.core.artifact.Branch, org.eclipse.core.runtime.IProgressMonitor)
*/
public void runOperation(BlamVariableMap variableMap, IProgressMonitor monitor) throws Exception {
for (Branch brnch : BranchPersistenceManager.getBranches()) {
if (!AccessControlManager.getInstance().getAccessControlList(brnch).isEmpty()) {
Artifact everyone =
ArtifactQuery.getArtifactFromAttribute("Name", "Everyone", BranchPersistenceManager.getCommonBranch());
AccessControlManager.getInstance().setPermission(everyone, brnch, PermissionEnum.READ);
}
}
}
}