View Javadoc

1   package org.kuali.common.util.service;
2   
3   import java.io.File;
4   import java.util.List;
5   
6   public interface ScmService {
7   
8   	void add(List<File> paths);
9   
10  	void delete(List<File> paths);
11  
12  	void commit(List<File> paths, String message);
13  
14  }