diff options
author | shrikantawachar <shrikant.awachar@amdocs.com> | 2017-12-27 15:05:52 +0530 |
---|---|---|
committer | Vitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com> | 2017-12-27 11:51:26 +0000 |
commit | b338b20c2969be56f7e075abb39abca861db4eae (patch) | |
tree | adc3df5f529deb1cbdf55ce19528323d75aa6261 /openecomp-be/api/openecomp-sdc-rest-webapp/onboarding-rest-war/src | |
parent | 3de3ffee5f36b7b34bbf1a64d6edb3e99879b0c8 (diff) |
Fixing sonar qube issues
Added Override annotation to method and removed runtime exception from method specification.
Change-Id: I12640d880c262fc301cafe8ede228e2a4772af88
Issue-ID: SDC-343
Signed-off-by: shrikantawachar <shrikant.awachar@amdocs.com>
Diffstat (limited to 'openecomp-be/api/openecomp-sdc-rest-webapp/onboarding-rest-war/src')
-rw-r--r-- | openecomp-be/api/openecomp-sdc-rest-webapp/onboarding-rest-war/src/main/java/org/openecomp/server/interceptors/EmptyOutputOutInterceptor.java | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/onboarding-rest-war/src/main/java/org/openecomp/server/interceptors/EmptyOutputOutInterceptor.java b/openecomp-be/api/openecomp-sdc-rest-webapp/onboarding-rest-war/src/main/java/org/openecomp/server/interceptors/EmptyOutputOutInterceptor.java index 9c02d5a558..f742854c6a 100644 --- a/openecomp-be/api/openecomp-sdc-rest-webapp/onboarding-rest-war/src/main/java/org/openecomp/server/interceptors/EmptyOutputOutInterceptor.java +++ b/openecomp-be/api/openecomp-sdc-rest-webapp/onboarding-rest-war/src/main/java/org/openecomp/server/interceptors/EmptyOutputOutInterceptor.java @@ -1,23 +1,18 @@ -/*- - * ============LICENSE_START======================================================= - * SDC - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. - * ================================================================================ +/* + * Copyright © 2016-2017 European Support Limited + * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * ============LICENSE_END========================================================= */ - package org.openecomp.server.interceptors; import org.apache.cxf.interceptor.AbstractOutDatabindingInterceptor; @@ -49,7 +44,8 @@ public class EmptyOutputOutInterceptor extends AbstractOutDatabindingInterceptor * * @param message input message. */ - public void handleMessage(Message message) throws Fault { + @Override + public void handleMessage(Message message) { //get the message MessageContentsList objs = MessageContentsList.getContentsList(message); if (objs.get(0) instanceof Response) { |