-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFileMapperOptions.java
More file actions
75 lines (56 loc) · 1.76 KB
/
FileMapperOptions.java
File metadata and controls
75 lines (56 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package org.utplsql.api;
import java.util.List;
public class FileMapperOptions {
private List<String> filePaths;
private String objectOwner;
private List<KeyValuePair> typeMappings;
private String regexPattern;
private Integer ownerSubExpression;
private Integer typeSubExpression;
private Integer nameSubExpression;
public FileMapperOptions(List<String> filePaths) {
this.setFilePaths(filePaths);
}
public List<String> getFilePaths() {
return filePaths;
}
public void setFilePaths(List<String> filePaths) {
this.filePaths = filePaths;
}
public String getObjectOwner() {
return objectOwner;
}
public void setObjectOwner(String owner) {
this.objectOwner = owner;
}
public List<KeyValuePair> getTypeMappings() {
return typeMappings;
}
public void setTypeMappings(List<KeyValuePair> typeMappings) {
this.typeMappings = typeMappings;
}
public String getRegexPattern() {
return regexPattern;
}
public void setRegexPattern(String regexPattern) {
this.regexPattern = regexPattern;
}
public Integer getOwnerSubExpression() {
return ownerSubExpression;
}
public void setOwnerSubExpression(Integer ownerSubExpression) {
this.ownerSubExpression = ownerSubExpression;
}
public Integer getTypeSubExpression() {
return typeSubExpression;
}
public void setTypeSubExpression(Integer typeSubExpression) {
this.typeSubExpression = typeSubExpression;
}
public Integer getNameSubExpression() {
return nameSubExpression;
}
public void setNameSubExpression(Integer nameSubExpression) {
this.nameSubExpression = nameSubExpression;
}
}