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.jdbc.convert;
017    
018    import java.io.File;
019    
020    public class DirectoryContext {
021    
022            File directory;
023            SqlConverter converter;
024            String include;
025            String exclude;
026        private PostConversionProcessor postProcessor;
027    
028        public File getDirectory() {
029                    return directory;
030            }
031    
032            public void setDirectory(File directory) {
033                    this.directory = directory;
034            }
035    
036            public SqlConverter getConverter() {
037                    return converter;
038            }
039    
040            public void setConverter(SqlConverter converter) {
041                    this.converter = converter;
042            }
043    
044            public String getInclude() {
045                    return include;
046            }
047    
048            public void setInclude(String include) {
049                    this.include = include;
050            }
051    
052            public String getExclude() {
053                    return exclude;
054            }
055    
056            public void setExclude(String exclude) {
057                    this.exclude = exclude;
058            }
059    
060        public PostConversionProcessor getPostProcessor() {
061            return postProcessor;
062        }
063    
064        public void setPostProcessor(PostConversionProcessor postProcessor) {
065            this.postProcessor = postProcessor;
066        }
067    }