You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/de/rwth/idsg/steve/web/dto/OcppTagQueryForm.java
+11-2
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
*/
19
19
packagede.rwth.idsg.steve.web.dto;
20
20
21
+
importcom.google.common.base.Strings;
21
22
importio.swagger.v3.oas.annotations.media.Schema;
22
23
importlombok.Getter;
23
24
importlombok.RequiredArgsConstructor;
@@ -53,6 +54,9 @@ public class OcppTagQueryForm {
53
54
@Schema(description = "Return blocked, not blocked, or all Ocpp tags? Defaults to ALL")
54
55
privateBooleanTypeblocked = BooleanType.FALSE;
55
56
57
+
@Schema(description = "Query by the note associated with the OCPP tag. The value of this field does not have to exactly match the note. A substring is also accepted.")
58
+
privateStringnote;
59
+
56
60
@Schema(hidden = true)
57
61
publicbooleanisOcppTagPkSet() {
58
62
returnocppTagPk != null;
@@ -68,6 +72,11 @@ public boolean isParentIdTagSet() {
0 commit comments