blob: 4310fa2b38960dc314c96a02f303fe96cfdbb1f7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2012 Ericsson
*
* 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
*
* Description:
*
* Contributors:
* Ericsson AB - Initial API and Implementation
* Alvaro Sanchez-Leon - Adapted for Review for Eclipse
*******************************************************************************/
package org.eclipse.mylyn.reviews.r4e.core.utils.filePermission;
import java.io.IOException;
/**
* @author Alvaro Sanchez-Leon
*
*/
public interface IFileSupportCommand {
/**
* Grant write permissions to the given file or folder
*
* @param path
* - Absolute string path to a file or folder
* @return
* @throws IOException
*/
public boolean grantWritePermission(String path) throws IOException;
}