summaryrefslogtreecommitdiffstats
path: root/auth
diff options
context:
space:
mode:
authorJonathan Gathman <jonathan.gathman@att.com>2019-01-03 16:30:25 +0000
committerGerrit Code Review <gerrit@onap.org>2019-01-03 16:30:25 +0000
commitee734612072b7bf66f7c65fc1b1488b53c2c38ba (patch)
treeedceb38d67b1b8e3f096c7d14b485bb158af836f /auth
parentd3cb040149ce8c021857d9aaf704cf16e606d2ec (diff)
parentc0a4dbb97f95f9902cbf685312fd49300433c6be (diff)
Merge "Sonar fix: Role.java"
Diffstat (limited to 'auth')
-rw-r--r--auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Role.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Role.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Role.java
index 4b4a2551..6d87dedc 100644
--- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Role.java
+++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/Role.java
@@ -3,6 +3,8 @@
* org.onap.aaf
* ===========================================================================
* Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
+ *
+ * Modifications Copyright (C) 2018 IBM.
* ===========================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -44,8 +46,11 @@ public class Role implements Comparable<Role> {
public static final TreeMap<String,Role> byName = new TreeMap<>();
private static List<Role> deleteRoles = new ArrayList<>();
- public final String ns, name, description;
- private String full, encode;
+ public final String ns;
+ public final String name;
+ public final String description;
+ private String full;
+ private String encode;
public final Set<String> perms;
public Role(String full) {