diff options
author | jhh <jorge.hernandez-herrero@att.com> | 2022-10-31 11:39:23 -0500 |
---|---|---|
committer | jhh <jorge.hernandez-herrero@att.com> | 2022-10-31 11:39:23 -0500 |
commit | 32cbb83fdb7eece88a458585829119d1663994ab (patch) | |
tree | 8fc0da0a8193e8769460992119dce76cfa98de28 /feature-distributed-locking | |
parent | 6652164b384221018bf605b1d5fb809425b26a8e (diff) |
Remove lombok public access in locking getters
Issue-ID: POLICY-4428
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Change-Id: I3c0be2c6e5ad4b723424f20eb39acb654605b235
Diffstat (limited to 'feature-distributed-locking')
-rw-r--r-- | feature-distributed-locking/src/main/java/org/onap/policy/distributed/locking/DistributedLockManager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/feature-distributed-locking/src/main/java/org/onap/policy/distributed/locking/DistributedLockManager.java b/feature-distributed-locking/src/main/java/org/onap/policy/distributed/locking/DistributedLockManager.java index 198b3303..d7f857eb 100644 --- a/feature-distributed-locking/src/main/java/org/onap/policy/distributed/locking/DistributedLockManager.java +++ b/feature-distributed-locking/src/main/java/org/onap/policy/distributed/locking/DistributedLockManager.java @@ -90,13 +90,13 @@ public class DistributedLockManager extends LockManager<DistributedLockManager.D /** * Name of the host on which this JVM is running. */ - @Getter(AccessLevel.PUBLIC) + @Getter private String pdpName; /** * UUID of this object. */ - @Getter(AccessLevel.PUBLIC) + @Getter private final String uuidString = UUID.randomUUID().toString(); /** |