Reformat catalog-dao
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / dao / cassandra / schema / tables / DistribEngineEventTableDesc.java
index 84ebf0b..0ea99b4 100644 (file)
@@ -7,9 +7,9 @@
  * 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.
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
-
 package org.openecomp.sdc.be.dao.cassandra.schema.tables;
 
 import com.datastax.driver.core.DataType;
+import java.util.Map;
+import lombok.AllArgsConstructor;
+import lombok.Getter;
 import org.apache.commons.lang3.tuple.ImmutablePair;
 import org.openecomp.sdc.be.resources.data.auditing.AuditingTypesConstants;
 
-import java.util.Map;
-
 public class DistribEngineEventTableDesc extends DistribBaseEventTableDesc {
 
     @Override
@@ -34,45 +34,28 @@ public class DistribEngineEventTableDesc extends DistribBaseEventTableDesc {
             columns.put(field.getName(), new ImmutablePair<>(field.type, field.indexed));
         }
         //replace the base indexed flag value with the correct one for a given table:
-        columns.put(DistFieldsDescription.REQUEST_ID.getName(),
-                new ImmutablePair<>(DistFieldsDescription.REQUEST_ID.getType(), true));
+        columns.put(DistFieldsDescription.REQUEST_ID.getName(), new ImmutablePair<>(DistFieldsDescription.REQUEST_ID.getType(), true));
     }
 
-
     @Override
-       public String getTableName() {
-               return AuditingTypesConstants.DISTRIBUTION_ENGINE_EVENT_TYPE;
-       }
+    public String getTableName() {
+        return AuditingTypesConstants.DISTRIBUTION_ENGINE_EVENT_TYPE;
+    }
 
-       enum DEEFieldsDescription {
-               CONSUMER_ID("consumer_id", DataType.varchar(), false),
+    @Getter
+    @AllArgsConstructor
+    enum DEEFieldsDescription {
+        // @formatter:off
+        CONSUMER_ID("consumer_id", DataType.varchar(), false),
                ROLE("role", DataType.varchar(), false),
-               D_ENV("d_env", DataType.varchar(), false), 
+               D_ENV("d_env", DataType.varchar(), false),
                API_KEY("api_key", DataType.varchar(), false),
-               DSTATUS_TOPIC("dstatus_topic", DataType.varchar(), false), 
+               DSTATUS_TOPIC("dstatus_topic", DataType.varchar(), false),
                DNOTIF_TOPIC("dnotif_topic", DataType.varchar(), false);
+        // @formatter:on
 
-               private String name;
-               private DataType type;
-               private boolean indexed;
-
-               DEEFieldsDescription(String name, DataType type, boolean indexed) {
-                       this.name = name;
-                       this.type = type;
-                       this.indexed = indexed;
-               }
-
-               public String getName() {
-                       return name;
-               }
-
-               public DataType getType() {
-                       return type;
-               }
-
-               public boolean isIndexed() {
-                       return indexed;
-               }
-       }
-
+        private final String name;
+        private final DataType type;
+        private final boolean indexed;
+    }
 }