From: Jonathan Gathman Date: Thu, 3 Jan 2019 16:30:25 +0000 (+0000) Subject: Merge "Sonar fix: Role.java" X-Git-Tag: 2.1.9~68 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=ee734612072b7bf66f7c65fc1b1488b53c2c38ba;hp=d3cb040149ce8c021857d9aaf704cf16e606d2ec;p=aaf%2Fauthz.git Merge "Sonar fix: Role.java" --- 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 { public static final TreeMap byName = new TreeMap<>(); private static List 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 perms; public Role(String full) {