File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/main/java/de/rwth/idsg/steve Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
package de .rwth .idsg .steve ;
2
2
3
+ import de .rwth .idsg .steve .ocpp .ws .custom .WsSessionSelectStrategy ;
3
4
import de .rwth .idsg .steve .ocpp .ws .custom .WsSessionSelectStrategyEnum ;
4
5
import de .rwth .idsg .steve .utils .PropertiesFileLoader ;
5
6
import lombok .Builder ;
@@ -139,7 +140,7 @@ public static class Auth {
139
140
@ Builder @ Getter
140
141
public static class Ocpp {
141
142
private final boolean autoRegisterUnknownStations ;
142
- private final WsSessionSelectStrategyEnum wsSessionSelectStrategy ;
143
+ private final WsSessionSelectStrategy wsSessionSelectStrategy ;
143
144
}
144
145
145
146
}
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public WebSocketSession getSession(Deque<SessionContext> sessionContexts) {
37
37
}
38
38
};
39
39
40
- public static WsSessionSelectStrategyEnum fromName (String v ) {
40
+ public static WsSessionSelectStrategy fromName (String v ) {
41
41
for (WsSessionSelectStrategyEnum s : WsSessionSelectStrategyEnum .values ()) {
42
42
if (s .name ().equals (v )) {
43
43
return s ;
You can’t perform that action at this time.
0 commit comments