diff options
author | Jim Hahn <jrh3@att.com> | 2021-07-22 15:23:37 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-07-22 15:23:37 +0000 |
commit | 81371839bd42ee2c54a072614e0da8d057032beb (patch) | |
tree | 997fd58bbb406d351e15b5e6863ad67e53d8ed8f /forwarding | |
parent | fdb749f777927106cd01510374bc13487a40fe90 (diff) | |
parent | cbb065aa43db6a1552aeb51bbb8b1020333a7aba (diff) |
Merge "Revert "Use new RestClientParameters class in distribution""
Diffstat (limited to 'forwarding')
-rw-r--r-- | forwarding/src/main/java/org/onap/policy/distribution/forwarding/PolicyForwarder.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/forwarding/src/main/java/org/onap/policy/distribution/forwarding/PolicyForwarder.java b/forwarding/src/main/java/org/onap/policy/distribution/forwarding/PolicyForwarder.java index e4fba0ae..3059f2f0 100644 --- a/forwarding/src/main/java/org/onap/policy/distribution/forwarding/PolicyForwarder.java +++ b/forwarding/src/main/java/org/onap/policy/distribution/forwarding/PolicyForwarder.java @@ -1,7 +1,6 @@ /*- * ============LICENSE_START======================================================= * Copyright (C) 2018 Ericsson. All rights reserved. - * Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,7 +21,6 @@ package org.onap.policy.distribution.forwarding; import java.util.Collection; -import org.onap.policy.common.endpoints.http.client.HttpClientConfigException; import org.onap.policy.models.tosca.authorative.concepts.ToscaEntity; /** @@ -42,9 +40,8 @@ public interface PolicyForwarder { * * @param parameterGroupName the name of the parameter group which contains the configuration * for the policy forwarder - * @throws HttpClientConfigException if an exception occurs */ - void configure(String parameterGroupName) throws HttpClientConfigException; + void configure(String parameterGroupName); /** * Forward the given policies. |