Fix lombok toString to call super where needed (#1634)
Signed-off-by: Marinov Avgustin <Avgustin.Marinov@bosch.com>
This commit is contained in:
@@ -25,7 +25,7 @@ import java.util.Arrays;
|
||||
@NoArgsConstructor(access = AccessLevel.PROTECTED)
|
||||
@Getter
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString
|
||||
@ToString(callSuper = true)
|
||||
public class RemoteIdEvent extends RemoteTenantAwareEvent {
|
||||
|
||||
@Serial
|
||||
|
||||
@@ -26,7 +26,7 @@ import java.io.Serial;
|
||||
*/
|
||||
@Getter
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString
|
||||
@ToString(callSuper = true)
|
||||
public class RemoteTenantAwareEvent extends RemoteApplicationEvent implements TenantAwareEvent {
|
||||
|
||||
@Serial
|
||||
|
||||
@@ -26,7 +26,7 @@ import org.eclipse.hawkbit.repository.model.Action;
|
||||
@NoArgsConstructor // for serialization libs like jackson
|
||||
@Getter
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString
|
||||
@ToString(callSuper = true)
|
||||
public class TargetAssignDistributionSetEvent extends AbstractAssignmentEvent {
|
||||
|
||||
@Serial
|
||||
|
||||
@@ -22,7 +22,7 @@ import java.io.Serial;
|
||||
*/
|
||||
@Getter
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString
|
||||
@ToString(callSuper = true)
|
||||
public class TargetAttributesRequestedEvent extends RemoteIdEvent {
|
||||
|
||||
@Serial
|
||||
|
||||
@@ -23,7 +23,7 @@ import java.io.Serial;
|
||||
*/
|
||||
@Getter
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString
|
||||
@ToString(callSuper = true)
|
||||
public class TargetDeletedEvent extends RemoteIdEvent implements EntityDeletedEvent {
|
||||
|
||||
@Serial
|
||||
|
||||
@@ -21,7 +21,7 @@ import java.io.Serial;
|
||||
*/
|
||||
@Getter
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString
|
||||
@ToString(callSuper = true)
|
||||
public class TargetPollEvent extends RemoteTenantAwareEvent {
|
||||
|
||||
@Serial
|
||||
|
||||
@@ -24,7 +24,7 @@ import java.io.Serial;
|
||||
@NoArgsConstructor // for serialization libs like jackson
|
||||
@Getter
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString
|
||||
@ToString(callSuper = true)
|
||||
public class TenantConfigurationDeletedEvent extends RemoteIdEvent implements EntityDeletedEvent {
|
||||
|
||||
@Serial
|
||||
|
||||
Reference in New Issue
Block a user