1
2
3
4
5
6
7
8
9
10
11
12
13
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 }