@@ -13,7 +13,7 @@ public BWClientConfiguration withDebugConnection(boolean value) {
13
13
debugConnection = value ;
14
14
return this ;
15
15
}
16
- boolean getDebugConnection () {
16
+ public boolean getDebugConnection () {
17
17
return debugConnection ;
18
18
}
19
19
private boolean debugConnection ;
@@ -26,7 +26,7 @@ public BWClientConfiguration withAutoContinue(boolean value) {
26
26
autoContinue = value ;
27
27
return this ;
28
28
}
29
- boolean getAutoContinue () {
29
+ public boolean getAutoContinue () {
30
30
return autoContinue ;
31
31
}
32
32
private boolean autoContinue = false ;
@@ -44,7 +44,7 @@ public BWClientConfiguration withUnlimitedFrameZero(boolean value) {
44
44
unlimitedFrameZero = value ;
45
45
return this ;
46
46
}
47
- boolean getUnlimitedFrameZero () {
47
+ public boolean getUnlimitedFrameZero () {
48
48
return unlimitedFrameZero ;
49
49
}
50
50
private boolean unlimitedFrameZero = true ;
@@ -60,7 +60,7 @@ public BWClientConfiguration withMaxFrameDurationMs(int value) {
60
60
maxFrameDurationMs = value ;
61
61
return this ;
62
62
}
63
- int getMaxFrameDurationMs () {
63
+ public int getMaxFrameDurationMs () {
64
64
return maxFrameDurationMs ;
65
65
}
66
66
private int maxFrameDurationMs = 40 ;
@@ -83,7 +83,7 @@ public BWClientConfiguration withAsync(boolean value) {
83
83
async = value ;
84
84
return this ;
85
85
}
86
- boolean getAsync () {
86
+ public boolean getAsync () {
87
87
return async ;
88
88
}
89
89
private boolean async = false ;
@@ -97,7 +97,7 @@ public BWClientConfiguration withAsyncFrameBufferCapacity(int size) {
97
97
asyncFrameBufferCapacity = size ;
98
98
return this ;
99
99
}
100
- int getAsyncFrameBufferCapacity () {
100
+ public int getAsyncFrameBufferCapacity () {
101
101
return asyncFrameBufferCapacity ;
102
102
}
103
103
private int asyncFrameBufferCapacity = 10 ;
@@ -114,7 +114,7 @@ public BWClientConfiguration withAsyncUnsafe(boolean value) {
114
114
asyncUnsafe = value ;
115
115
return this ;
116
116
}
117
- boolean getAsyncUnsafe () {
117
+ public boolean getAsyncUnsafe () {
118
118
return asyncUnsafe ;
119
119
}
120
120
private boolean asyncUnsafe = false ;
@@ -127,7 +127,7 @@ public BWClientConfiguration withLogVerbosely(boolean value) {
127
127
logVerbosely = value ;
128
128
return this ;
129
129
}
130
- boolean getLogVerbosely () {
130
+ public boolean getLogVerbosely () {
131
131
return logVerbosely ;
132
132
}
133
133
private boolean logVerbosely = false ;
0 commit comments