-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathConfiguration.java
78 lines (60 loc) · 1.88 KB
/
Configuration.java
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
76
77
78
package com.uber.cadence.largeblob;
import com.uber.cadence.converter.DataConverter;
import com.uber.cadence.converter.JsonDataConverter;
import java.time.Duration;
public class Configuration {
private Storage storage;
private DataConverter dataConverter;
private Long maxBytes;
private Duration ttl;
private Configuration() {
}
public static Builder newBuilder() {
return new Builder();
}
public static class Builder {
private Storage storage;
private DataConverter dataConverter = JsonDataConverter.getInstance();
private Duration ttl;
private Long maxBytes = 4096L;
public Configuration build() {
if (storage == null) {
throw new IllegalArgumentException("storage must be provided");
}
Configuration configuration = new Configuration();
configuration.storage = this.storage;
configuration.dataConverter = this.dataConverter;
configuration.ttl = this.ttl;
configuration.maxBytes = this.maxBytes;
return configuration;
}
public Builder setDataConverter(DataConverter dataConverter) {
this.dataConverter = dataConverter;
return this;
}
public Builder setStorage(Storage storage) {
this.storage = storage;
return this;
}
public Builder setTtl(Duration ttl) {
this.ttl = ttl;
return this;
}
public Builder setMaxBytes(Long maxBytes) {
this.maxBytes = maxBytes;
return this;
}
}
public Storage getStorage() {
return storage;
}
public DataConverter getDataConverter() {
return dataConverter;
}
public Duration getTtl() {
return ttl;
}
public Long getMaxBytes() {
return maxBytes;
}
}