File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/de/rwth/idsg/steve/ocpp/task Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,21 +25,21 @@ public OcppCallback<String> defaultCallback() {
25
25
@ Override
26
26
public ocpp .cp ._2010 ._08 .ChangeConfigurationRequest getOcpp12Request () {
27
27
return new ocpp .cp ._2010 ._08 .ChangeConfigurationRequest ()
28
- .withKey (params .getConfKey ())
28
+ .withKey (params .getKey ())
29
29
.withValue (params .getValue ());
30
30
}
31
31
32
32
@ Override
33
33
public ocpp .cp ._2012 ._06 .ChangeConfigurationRequest getOcpp15Request () {
34
34
return new ocpp .cp ._2012 ._06 .ChangeConfigurationRequest ()
35
- .withKey (params .getConfKey ())
35
+ .withKey (params .getKey ())
36
36
.withValue (params .getValue ());
37
37
}
38
38
39
39
@ Override
40
40
public ocpp .cp ._2015 ._10 .ChangeConfigurationRequest getOcpp16Request () {
41
41
return new ocpp .cp ._2015 ._10 .ChangeConfigurationRequest ()
42
- .withKey (params .getConfKey ())
42
+ .withKey (params .getKey ())
43
43
.withValue (params .getValue ());
44
44
}
45
45
You can’t perform that action at this time.
0 commit comments