001    package org.kuali.common.util.service;
002    
003    import java.io.File;
004    import java.util.List;
005    
006    public interface ScmService {
007    
008            void add(List<File> paths);
009    
010            void delete(List<File> paths);
011    
012            void commit(List<File> paths, String message);
013    
014    }