summaryrefslogtreecommitdiffstats
path: root/auth
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2019-01-04 23:47:27 +0530
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>2019-01-04 23:47:44 +0530
commite092a5c61ebf033110473a96b908dc9d8407aea6 (patch)
treea8c15754145dc62fdbd537847f36c779746b07cd /auth
parenteba580dcfdfc2f878285b6040632ada96f4c9378 (diff)
Sonar fix: ListUsers.java
Fixed sonar issues/code-smells across this file Issue-ID: AAF-700 Change-Id: I8f1ed095b8bbf21294c0bcbf4621b876a63b36d7 Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'auth')
-rw-r--r--auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/ns/ListUsers.java19
1 files changed, 12 insertions, 7 deletions
diff --git a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/ns/ListUsers.java b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/ns/ListUsers.java
index 4bd3aed4..ba2f88dc 100644
--- a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/ns/ListUsers.java
+++ b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/ns/ListUsers.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.
@@ -31,12 +33,7 @@ import aaf.v2_0.Nss;
import aaf.v2_0.Users.User;
public class ListUsers extends BaseCmd<List> {
-
- public ListUsers(List parent) {
- super(parent,"user");
- cmds.add(new ListUsersWithPerm(this));
- cmds.add(new ListUsersInRole(this));
- }
+
private static final Future<Nss> dummy = new Future<Nss>(){
@Override
@@ -59,6 +56,15 @@ public class ListUsers extends BaseCmd<List> {
return null;
}
};
+
+ private static final String uformat = "%s%-50s expires:%02d/%02d/%04d\n";
+
+ public ListUsers(List parent) {
+ super(parent,"user");
+ cmds.add(new ListUsersWithPerm(this));
+ cmds.add(new ListUsersInRole(this));
+ }
+
public void report(String header, String ns) {
((List)parent).report(dummy, header,ns);
}
@@ -67,7 +73,6 @@ public class ListUsers extends BaseCmd<List> {
pw().println(subHead);
}
- private static final String uformat = "%s%-50s expires:%02d/%02d/%04d\n";
public void report(String prefix, User u) {
XMLGregorianCalendar xgc = u.getExpires();
pw().format(uformat,prefix,u.getId(),xgc.getMonth()+1,xgc.getDay(),xgc.getYear());