Fixed constructors in Lombok-annotated classes 40/69740/1
authorvempo <vitaliy.emporopulo@amdocs.com>
Wed, 3 Oct 2018 12:27:34 +0000 (15:27 +0300)
committervempo <vitaliy.emporopulo@amdocs.com>
Wed, 3 Oct 2018 12:27:34 +0000 (15:27 +0300)
Used Lombok annotations instead of implementations
for constructors where possible. Fixed copyright headers
and formatting.

Change-Id: I9d6cd2936cf165f08f31e11e253743b8670560a5
Issue-ID: SDC-1815
Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
workflow-designer-be/src/main/java/org/onap/sdc/workflow/api/types/VersionStateDto.java
workflow-designer-be/src/main/java/org/onap/sdc/workflow/api/types/dto/ArtifactDeliveriesRequestDto.java
workflow-designer-be/src/main/java/org/onap/sdc/workflow/persistence/types/ArtifactEntity.java
workflow-designer-be/src/main/java/org/onap/sdc/workflow/persistence/types/UniqueValueEntity.java
workflow-designer-be/src/main/java/org/onap/sdc/workflow/services/types/PagingRequest.java
workflow-designer-be/src/main/java/org/onap/sdc/workflow/services/types/RequestSpec.java
workflow-designer-be/src/main/java/org/onap/sdc/workflow/services/types/Sort.java
workflow-designer-be/src/main/java/org/onap/sdc/workflow/services/types/SortingRequest.java

index 147ca50..8e6dd09 100644 (file)
@@ -18,17 +18,16 @@ package org.onap.sdc.workflow.api.types;
 
 import java.util.List;
 import lombok.Data;
+import lombok.NoArgsConstructor;
 import org.onap.sdc.workflow.services.types.WorkflowVersionState;
 
 @Data
+@NoArgsConstructor
 public class VersionStateDto {
 
     private WorkflowVersionState name;
     private List<WorkflowVersionState> nextStates;
 
-    public VersionStateDto() {
-    }
-
     public VersionStateDto(WorkflowVersionState state) {
         name = state;
         nextStates = state.getNextStates();
index 2ec272f..5ec54ff 100644 (file)
 
 package org.onap.sdc.workflow.api.types.dto;
 
+import lombok.AllArgsConstructor;
 import lombok.Data;
+import lombok.NoArgsConstructor;
 
 /**
- * This class is a simple data object for the Artifact-Deliveries API
- * It will be used to build a HTTP request to be sent to SDC external API
- *
- * method
- *      the HTTP method (PUT, POST etc) that will be executed.
- *
- *  endpoint
- *          the server to which the request will be sent.
- *          correct format is <IP>:<PORT>
+ * This class is a simple data object for the Artifact-Deliveries API.
+ * It will be used to build a HTTP request to be sent to SDC external API.
  */
 @Data
+@AllArgsConstructor
+@NoArgsConstructor
 public class ArtifactDeliveriesRequestDto {
 
+    /**
+     * The HTTP method (PUT, POST etc) that will be executed.
+     */
     private String method;
-    private String endpoint;
 
-    public ArtifactDeliveriesRequestDto(){
-    }
-
-    public ArtifactDeliveriesRequestDto(String method, String endpoint) {
-        this.method = method;
-        this.endpoint = endpoint;
-    }
+    /**
+     * The server to which the request will be sent. Correct format is &lt;IP&gt;:&lt;PORT&gt;.
+     */
+    private String endpoint;
 }
index 287acb4..6281975 100644 (file)
 package org.onap.sdc.workflow.persistence.types;
 
 import java.io.InputStream;
+import lombok.AllArgsConstructor;
 import lombok.Data;
 
 @Data
+@AllArgsConstructor
 public class ArtifactEntity {
 
     private String fileName;
     private InputStream artifactData;
-
-    public ArtifactEntity(String fileName, InputStream artifactData) {
-        this.fileName = fileName;
-        this.artifactData = artifactData;
-    }
 }
index ee7172b..faf515b 100644 (file)
@@ -18,12 +18,14 @@ package org.onap.sdc.workflow.persistence.types;
 
 import static org.springframework.data.cassandra.core.cql.PrimaryKeyType.PARTITIONED;
 
+import lombok.AllArgsConstructor;
 import lombok.Data;
 import org.springframework.data.cassandra.core.mapping.PrimaryKeyColumn;
 import org.springframework.data.cassandra.core.mapping.Table;
 
 @Table("unique_value")
 @Data
+@AllArgsConstructor
 public class UniqueValueEntity {
 
     @PrimaryKeyColumn(ordinal = 0, type = PARTITIONED)
@@ -31,9 +33,4 @@ public class UniqueValueEntity {
 
     @PrimaryKeyColumn(ordinal = 1, type = PARTITIONED)
     private String value;
-
-    public UniqueValueEntity(String type, String value) {
-        this.type = type;
-        this.value = value;
-    }
 }
index da46cc2..6408ee6 100644 (file)
@@ -1,3 +1,19 @@
+/*
+ * Copyright © 2018 European Support Limited
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package org.onap.sdc.workflow.services.types;
 
 import lombok.Getter;
index cb974ee..06ebdf1 100644 (file)
@@ -1,15 +1,28 @@
+/*
+ * Copyright © 2018 European Support Limited
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package org.onap.sdc.workflow.services.types;
 
+import lombok.AllArgsConstructor;
 import lombok.Data;
 
 @Data
+@AllArgsConstructor
 public class RequestSpec {
 
     private PagingRequest paging;
     private SortingRequest sorting;
-
-    public RequestSpec(PagingRequest paging, SortingRequest sorting) {
-        this.paging = paging;
-        this.sorting = sorting;
-    }
 }
index 88151a0..b26ef1c 100644 (file)
@@ -1,17 +1,30 @@
+/*
+ * Copyright © 2018 European Support Limited
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package org.onap.sdc.workflow.services.types;
 
+import lombok.AllArgsConstructor;
 import lombok.EqualsAndHashCode;
 import lombok.Getter;
 
 @Getter
 @EqualsAndHashCode
+@AllArgsConstructor
 public class Sort {
 
     private String property;
     private boolean ascendingOrder;
-
-    public Sort(String property, boolean ascendingOrder) {
-        this.property = property;
-        this.ascendingOrder = ascendingOrder;
-    }
 }
index c3b7aa4..cd8b2c2 100644 (file)
@@ -1,3 +1,19 @@
+/*
+ * Copyright © 2018 European Support Limited
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package org.onap.sdc.workflow.services.types;
 
 import java.util.List;