Deleted no longer needed logging files 25/27825/2
authorvempo <vitaliy.emporopulo@amdocs.com>
Wed, 10 Jan 2018 13:12:22 +0000 (15:12 +0200)
committerAvi Gaffa <avi.gaffa@amdocs.com>
Thu, 11 Jan 2018 08:37:07 +0000 (08:37 +0000)
Change-Id: I0a214f9572c3acabc374154ffcaca71308dfd26b
Issue-ID: SDC-772
Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/messages/DebugMessages.java [deleted file]
openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/DebugConstants.java [deleted file]
openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/LoggerErrorCategory.java [deleted file]

diff --git a/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/messages/DebugMessages.java b/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/messages/DebugMessages.java
deleted file mode 100644 (file)
index 535d601..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * 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.
- */
-
-package org.openecomp.sdc.logging.messages;
-
-
-public class DebugMessages {
-  public static final String DEFAULT_ENTER_METHOD = "Entering %s";
-  public static final String DEFAULT_EXIT_METHOD = "Exiting %s";
-
-  public static final String ENTER_METHOD = "Entering %s with %s = %s";
-  public static final String EXIT_METHOD = "Exiting %s with %s = %s";
-
-  public static final String ENTER_METHOD_FORMATTED = "Entering %s with %s";
-  public static final String EXIT_METHOD_FORMATTED = "Exiting %s with %s";
-  private DebugMessages(){
-
-  }
-
-}
diff --git a/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/DebugConstants.java b/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/DebugConstants.java
deleted file mode 100644 (file)
index 1312b7e..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * 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.
- */
-
-package org.openecomp.sdc.logging.types;
-
-public class DebugConstants {
-  public static final String EXIT = "Exit";
-  public static final String EXIT_DEFAULT = "Exit_Default";
-  public static final String ENTER = "Enter";
-  public static final String ENTER_DEFAULT = "Enter_Default";
-  public static final String DEFAULT = "Default";
-  private DebugConstants(){
-
-  }
-}
diff --git a/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/LoggerErrorCategory.java b/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/LoggerErrorCategory.java
deleted file mode 100644 (file)
index 4dff1ae..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * 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.
- */
-
-package org.openecomp.sdc.logging.types;
-
-
-public enum LoggerErrorCategory {
-  ERROR,
-  WARN,
-  DEBUG,
-  INFO,
-  FATAL
-}