summaryrefslogtreecommitdiffstats
path: root/models-interactions
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@est.tech>2021-06-28 09:33:18 +0100
committerliamfallon <liam.fallon@est.tech>2021-06-28 10:38:44 +0100
commitd6d78efe6a355805ad384ded50e2a25e31e7345a (patch)
treea7a750588ac33047dcf3103d85592ec7b12e4795 /models-interactions
parentf2078f5fd455c02f615b33700e1b545e0055e2fe (diff)
Update policy-models for checkstyle 8.43
Issue-ID: POLICY-3209 Change-Id: Ic45f889ab4d0ed24f6c1fc1aaece0601636e7a10 Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'models-interactions')
-rw-r--r--models-interactions/model-impl/guard/src/main/java/org/onap/policy/guard/OperationsHistory.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/models-interactions/model-impl/guard/src/main/java/org/onap/policy/guard/OperationsHistory.java b/models-interactions/model-impl/guard/src/main/java/org/onap/policy/guard/OperationsHistory.java
index 0e66217f4..2ec1f342e 100644
--- a/models-interactions/model-impl/guard/src/main/java/org/onap/policy/guard/OperationsHistory.java
+++ b/models-interactions/model-impl/guard/src/main/java/org/onap/policy/guard/OperationsHistory.java
@@ -3,6 +3,7 @@
* ONAP
* ================================================================================
* Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2021 Nordix Foundation.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -34,8 +35,9 @@ import lombok.Data;
@Entity
@Table(name = "operationshistory", indexes = {
- @Index(name = "operationshistory_clreqid_index", columnList = "requestId,closedLoopName"),
- @Index(name = "operationshistory_target_index", columnList = "target,operation,actor,endtime")})
+ @Index(name = "operationshistory_clreqid_index", columnList = "requestId,closedLoopName"),
+ @Index(name = "operationshistory_target_index", columnList = "target,operation,actor,endtime")
+})
@Data
public class OperationsHistory implements Serializable {