forked from utPLSQL/utPLSQL-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileMapperConfig.java
More file actions
54 lines (43 loc) · 1.57 KB
/
FileMapperConfig.java
File metadata and controls
54 lines (43 loc) · 1.57 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
package org.utplsql.cli.config;
import java.beans.ConstructorProperties;
import java.util.Map;
public class FileMapperConfig {
private final String path;
private final String owner;
private final String regexExpression;
private final Map<String, String> typeMapping;
private final Integer ownerSubexpression;
private final Integer nameSubexpression;
private final Integer typeSubexpression;
@ConstructorProperties({"path", "owner", "regexExpression", "typeMapping", "ownerSubexpression", "nameSubexpression", "typeSubexpression"})
public FileMapperConfig(String path, String owner, String regexExpression, Map<String, String> typeMapping, Integer ownerSubexpression, Integer nameSubexpression, Integer typeSubexpression) {
this.path = path;
this.owner = owner;
this.regexExpression = regexExpression;
this.typeMapping = typeMapping;
this.ownerSubexpression = ownerSubexpression;
this.nameSubexpression = nameSubexpression;
this.typeSubexpression = typeSubexpression;
}
public String getPath() {
return path;
}
public String getOwner() {
return owner;
}
public String getRegexExpression() {
return regexExpression;
}
public Map<String, String> getTypeMapping() {
return typeMapping;
}
public Integer getOwnerSubexpression() {
return ownerSubexpression;
}
public Integer getNameSubexpression() {
return nameSubexpression;
}
public Integer getTypeSubexpression() {
return typeSubexpression;
}
}