From 5f06002c1f9fd011aca7962f5a020ff01e8fdc67 Mon Sep 17 00:00:00 2001 From: avigaffa Date: Wed, 5 Jun 2019 16:22:01 +0300 Subject: Add lombok support to simple classes Change-Id: I80c5a691f61c16ffc7d146e11a08cda317f31539 Issue-ID: SDC-2354 Signed-off-by: avigaffa --- .../java/org/openecomp/sdcrests/action/types/ActionResponseDto.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'openecomp-be/api/openecomp-sdc-rest-webapp') diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/action-library-rest/action-library-rest-types/src/main/java/org/openecomp/sdcrests/action/types/ActionResponseDto.java b/openecomp-be/api/openecomp-sdc-rest-webapp/action-library-rest/action-library-rest-types/src/main/java/org/openecomp/sdcrests/action/types/ActionResponseDto.java index cceb0f25d8..804473b008 100644 --- a/openecomp-be/api/openecomp-sdc-rest-webapp/action-library-rest/action-library-rest-types/src/main/java/org/openecomp/sdcrests/action/types/ActionResponseDto.java +++ b/openecomp-be/api/openecomp-sdc-rest-webapp/action-library-rest/action-library-rest-types/src/main/java/org/openecomp/sdcrests/action/types/ActionResponseDto.java @@ -24,12 +24,15 @@ package org.openecomp.sdcrests.action.types; import java.util.HashMap; import java.util.List; import lombok.Data; +import lombok.Getter; import lombok.NoArgsConstructor; +import lombok.Setter; /** * Defines DTO used for Action Response. */ -@Data +@Getter +@Setter @NoArgsConstructor public class ActionResponseDto { -- cgit 1.2.3-korg