S5993 Change the visibility of this constructor to "protected".
Issue-ID: POLICY-2908
Change-Id: Id7b7d908eb687345f4d91b05869b3925c8694b05
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
  * ============LICENSE_START=======================================================
  *  Copyright (C) 2018 Ericsson. All rights reserved.
  *  Modifications Copyright (C) 2019 Nordix Foundation.
+ *  Modifications Copyright (C) 2020 AT&T Corp.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  */
 public abstract class PolicyForwarderConfigurationParameterGroup extends ParameterGroupImpl {
 
-    public PolicyForwarderConfigurationParameterGroup(final String name) {
+    protected PolicyForwarderConfigurationParameterGroup(final String name) {
         super(name);
     }
 }
 
  * ============LICENSE_START=======================================================
  *  Copyright (C) 2018 Ericsson. All rights reserved.
  *  Modifications Copyright (C) 2019 Nordix Foundation.
+ *  Modifications Copyright (C) 2020 AT&T Corp.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  */
 public abstract class PolicyDecoderConfigurationParameterGroup extends ParameterGroupImpl {
 
-    public PolicyDecoderConfigurationParameterGroup(final String name) {
+    protected PolicyDecoderConfigurationParameterGroup(final String name) {
         super(name);
     }
 }
 
  * ============LICENSE_START=======================================================
  *  Copyright (C) 2018 Ericsson. All rights reserved.
  *  Modifications Copyright (C) 2019 Nordix Foundation.
+ *  Modifications Copyright (C) 2020 AT&T Corp.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  */
 public abstract class ReceptionHandlerConfigurationParameterGroup extends ParameterGroupImpl {
 
-    public ReceptionHandlerConfigurationParameterGroup(final String name) {
+    protected ReceptionHandlerConfigurationParameterGroup(final String name) {
         super(name);
     }
 }