X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fonap%2Fdmaap%2Fdbcapi%2Faaf%2FAafNamespace.java;h=793260c0697bde197ca554f9138e9f0ca133ba19;hb=refs%2Fchanges%2F78%2F76178%2F1;hp=aa4fb89136665bc8235aa41881ef065dae955955;hpb=ccda7ee6355fe767fe6091d9943d9b295c29ee99;p=dmaap%2Fdbcapi.git diff --git a/src/main/java/org/onap/dmaap/dbcapi/aaf/AafNamespace.java b/src/main/java/org/onap/dmaap/dbcapi/aaf/AafNamespace.java index aa4fb89..793260c 100644 --- a/src/main/java/org/onap/dmaap/dbcapi/aaf/AafNamespace.java +++ b/src/main/java/org/onap/dmaap/dbcapi/aaf/AafNamespace.java @@ -3,6 +3,7 @@ * org.onap.dmaap * ================================================================================ * Copyright (C) 2017 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. @@ -27,22 +28,22 @@ import org.onap.dmaap.dbcapi.util.DmaapConfig; public class AafNamespace extends AafObject { - static final Logger logger = Logger.getLogger(AafNamespace.class); + private static final Logger logger = Logger.getLogger(AafNamespace.class); private String name; - private ArrayList admin; - private ArrayList responsible; + private ArrayList admin; + private ArrayList responsible; // in some environments, an AAF Namespace must be owned by a human. // So, when needed, this var can be set via a property - static private String NsOwnerIdentity; + private static String NsOwnerIdentity; public AafNamespace(String ns, String identity ) { super(); DmaapConfig p = (DmaapConfig)DmaapConfig.getConfig(); NsOwnerIdentity = p.getProperty( "aaf.NsOwnerIdentity", ""); - this.admin = new ArrayList(); - this.responsible = new ArrayList(); + this.admin = new ArrayList<>(); + this.responsible = new ArrayList<>(); this.name = ns; this.admin.add( identity ); @@ -73,7 +74,7 @@ public class AafNamespace extends AafObject { // output "a", "b", "c" private String separatedList( ArrayList list, String sep ) { if (list.isEmpty()) return null; - String aList = new String(); + String aList = ""; String delim = ""; for( String item: list) { if( ! item.isEmpty()) {