diff options
author | avigaffa <avi.gaffa@amdocs.com> | 2019-06-05 16:22:01 +0300 |
---|---|---|
committer | Oren Kleks <orenkle@amdocs.com> | 2019-06-11 06:22:38 +0000 |
commit | 5f06002c1f9fd011aca7962f5a020ff01e8fdc67 (patch) | |
tree | fb56aec38251d4b803992bfdee0d0fc31781259d /openecomp-be/api | |
parent | 1a6dc06b35e3d49953325a3d6c1eefee76ac8601 (diff) |
Add lombok support to simple classes
Change-Id: I80c5a691f61c16ffc7d146e11a08cda317f31539
Issue-ID: SDC-2354
Signed-off-by: avigaffa <avi.gaffa@amdocs.com>
Diffstat (limited to 'openecomp-be/api')
-rw-r--r-- | openecomp-be/api/openecomp-sdc-rest-webapp/action-library-rest/action-library-rest-types/src/main/java/org/openecomp/sdcrests/action/types/ActionResponseDto.java | 5 |
1 files changed, 4 insertions, 1 deletions
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 { |