001/** 002 * Copyright 2010-2014 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 */ 016package org.kuali.common.util; 017 018import java.io.File; 019import java.util.List; 020 021@Deprecated 022public class DirectoryDiffRequest { 023 024 List<String> includes = FileSystemUtils.DEFAULT_RECURSIVE_INCLUDES; 025 List<String> excludes = FileSystemUtils.DEFAULT_SCM_IGNORE_PATTERNS; 026 027 File dir1; 028 File dir2; 029 030 public DirectoryDiffRequest() { 031 this(null, null); 032 } 033 034 public DirectoryDiffRequest(File dir1, File dir2) { 035 super(); 036 this.dir1 = dir1; 037 this.dir2 = dir2; 038 } 039 040 public File getDir1() { 041 return dir1; 042 } 043 044 public void setDir1(File dir1) { 045 this.dir1 = dir1; 046 } 047 048 public File getDir2() { 049 return dir2; 050 } 051 052 public void setDir2(File dir2) { 053 this.dir2 = dir2; 054 } 055 056 public List<String> getIncludes() { 057 return includes; 058 } 059 060 public void setIncludes(List<String> includes) { 061 this.includes = includes; 062 } 063 064 public List<String> getExcludes() { 065 return excludes; 066 } 067 068 public void setExcludes(List<String> excludes) { 069 this.excludes = excludes; 070 } 071 072}