X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=common-app-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopenecomp%2Fsdc%2Fcommon%2Fconfig%2FAbsEcompErrorManager.java;h=a8ee0e85c0ae8e5e5b1cb5df73dd15d4f3f79e19;hb=3ee61018a1140ace7f9cda5839949f9a31182fa6;hp=49f04d2ee11332ea76e11a754754aef76ae39ea6;hpb=59f4edc21e410e158a79e1bff842f9623126a453;p=sdc.git diff --git a/common-app-api/src/main/java/org/openecomp/sdc/common/config/AbsEcompErrorManager.java b/common-app-api/src/main/java/org/openecomp/sdc/common/config/AbsEcompErrorManager.java index 49f04d2ee1..a8ee0e85c0 100644 --- a/common-app-api/src/main/java/org/openecomp/sdc/common/config/AbsEcompErrorManager.java +++ b/common-app-api/src/main/java/org/openecomp/sdc/common/config/AbsEcompErrorManager.java @@ -7,9 +7,9 @@ * 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. @@ -17,7 +17,6 @@ * limitations under the License. * ============LICENSE_END========================================================= */ - package org.openecomp.sdc.common.config; import com.jcabi.aspects.Loggable; @@ -25,14 +24,11 @@ import com.jcabi.aspects.Loggable; @Loggable(prepend = true, value = Loggable.TRACE, trim = false) public abstract class AbsEcompErrorManager { - public static final String PARAM_STR = "%s"; - - public abstract IEcompConfigurationManager getConfigurationManager(); - - public void processEcompError(String context, EcompErrorEnum ecompErrorEnum, String... descriptionParams) { - - EcompErrorLogUtil.logEcompError(context, ecompErrorEnum, descriptionParams); + public static final String PARAM_STR = "%s"; - } + public abstract IEcompConfigurationManager getConfigurationManager(); + public void processEcompError(String context, EcompErrorEnum ecompErrorEnum, String... descriptionParams) { + EcompErrorLogUtil.logEcompError(context, ecompErrorEnum, descriptionParams); + } }