001    /**
002     * Copyright 2010-2013 The Kuali Foundation
003     *
004     * Licensed under the Educational Community License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at
007     *
008     * http://www.opensource.org/licenses/ecl2.php
009     *
010     * Unless required by applicable law or agreed to in writing, software
011     * distributed under the License is distributed on an "AS IS" BASIS,
012     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     * See the License for the specific language governing permissions and
014     * limitations under the License.
015     */
016    package org.kuali.common.util.service;
017    
018    import java.io.File;
019    import java.util.List;
020    
021    @Deprecated
022    public interface ScmService extends org.kuali.common.util.scm.ScmService {
023    
024            /**
025             * Add <code>paths</code> so they are included in files managed by the SCM system.
026             */
027            @Override
028            void add(List<File> paths);
029    
030            /**
031             * Delete <code>paths</code> so they are no longer managed by the SCM system.
032             */
033            @Override
034            void delete(List<File> paths);
035    
036            /**
037             * Commit <code>paths</code> with a commit message.
038             */
039            @Override
040            void commit(List<File> paths, String message);
041    
042            /**
043             * Display version information.
044             */
045            @Override
046            void version();
047    
048    }