xwm1992 commented on code in PR #3841:
URL: https://github.com/apache/eventmesh/pull/3841#discussion_r1188049898
##########
eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/http/HttpCommand.java:
##########
@@ -57,9 +60,9 @@ public class HttpCommand implements ProtocolTransportObject {
public String httpVersion;
- public Header header;
+ @Getter @Setter private transient Header header;
Review Comment:
you do not need to add @Getter @Setter, because this class has the @Data
annotation. @harshithasudhakar
##########
eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/http/HttpCommand.java:
##########
@@ -57,9 +60,9 @@ public class HttpCommand implements ProtocolTransportObject {
public String httpVersion;
- public Header header;
+ @Getter @Setter private transient Header header;
- public Body body;
+ @Getter @Setter private transient Body body;
Review Comment:
same as above
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]