diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2019-08-06 23:43:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-08-06 23:43:06 +0000 |
commit | 66029ede0f6daa700e00c002a30c52d6a75f594b (patch) | |
tree | b6cccc0b91fba03d9fe5e6a0257ee560e8d66cc2 /auth | |
parent | 66f7d22a452e1f819ca9cc763fff8ebe60265742 (diff) | |
parent | f25a1504c6ba96928d7219747accfe62a856cc69 (diff) |
Merge "Sonar fix: Role.java"
Diffstat (limited to 'auth')
-rw-r--r-- | auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/role/Role.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/role/Role.java b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/role/Role.java index e3c838af..459848a1 100644 --- a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/role/Role.java +++ b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/role/Role.java @@ -3,6 +3,8 @@ * org.onap.aaf * =========================================================================== * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. + * + * Modifications Copyright (C) 2019 IBM. * =========================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,12 +30,12 @@ import org.onap.aaf.misc.env.APIException; public class Role extends BaseCmd<Role> { public List list; - public Role(AAFcli aafcli) throws APIException { + public Role(AAFcli aafcli) { super(aafcli, "role"); cmds.add(new CreateDelete(this)); -// cmds.add(new Delete(this)); cmds.add(new User(this)); cmds.add(new Describe(this)); - cmds.add(list = new List(this)); + list = new List(this); + cmds.add(list); } } |