View Javadoc

1   /**
2    * Copyright 2011 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  
16  package org.kuali.student.sonar.database.utility;
17  
18  import org.kuali.common.impex.model.compare.service.SchemaCompareService;
19  
20  public class SchemaEqualityValidationContext {
21      private Boolean skip;
22  
23      protected String appSchemaName;
24  
25      protected String appPath;
26  
27      protected String appSchemaFilename;
28  
29      protected String appConstraintsFilename;
30  
31      protected String ddlSchemaName;
32  
33      protected String ddlPath;
34  
35      protected String ddlSchemaFilename;
36  
37      protected String ddlConstraintsFilename;
38  
39      protected SchemaCompareService compareService;
40  
41      public Boolean getSkip() {
42          return skip;
43      }
44  
45      public void setSkip(Boolean skip) {
46          this.skip = skip;
47      }
48  
49      public String getAppConstraintsFilename() {
50          return appConstraintsFilename;
51      }
52  
53      public void setAppConstraintsFilename(String appConstraintsFilename) {
54          this.appConstraintsFilename = appConstraintsFilename;
55      }
56  
57      public String getAppPath() {
58          return appPath;
59      }
60  
61      public void setAppPath(String appPath) {
62          this.appPath = appPath;
63      }
64  
65      public String getAppSchemaFilename() {
66          return appSchemaFilename;
67      }
68  
69      public void setAppSchemaFilename(String appSchemaFilename) {
70          this.appSchemaFilename = appSchemaFilename;
71      }
72  
73      public String getAppSchemaName() {
74          return appSchemaName;
75      }
76  
77      public void setAppSchemaName(String appSchemaName) {
78          this.appSchemaName = appSchemaName;
79      }
80  
81      public String getDdlConstraintsFilename() {
82          return ddlConstraintsFilename;
83      }
84  
85      public void setDdlConstraintsFilename(String ddlConstraintsFilename) {
86          this.ddlConstraintsFilename = ddlConstraintsFilename;
87      }
88  
89      public String getDdlPath() {
90          return ddlPath;
91      }
92  
93      public void setDdlPath(String ddlPath) {
94          this.ddlPath = ddlPath;
95      }
96  
97      public String getDdlSchemaFilename() {
98          return ddlSchemaFilename;
99      }
100 
101     public void setDdlSchemaFilename(String ddlSchemaFilename) {
102         this.ddlSchemaFilename = ddlSchemaFilename;
103     }
104 
105     public String getDdlSchemaName() {
106         return ddlSchemaName;
107     }
108 
109     public void setDdlSchemaName(String ddlSchemaName) {
110         this.ddlSchemaName = ddlSchemaName;
111     }
112 
113     public SchemaCompareService getCompareService() {
114         return compareService;
115     }
116 
117     public void setCompareService(SchemaCompareService compareService) {
118         this.compareService = compareService;
119     }
120 }