[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-core-lib / openecomp-zusammen-lib / openecomp-zusammen-core / src / main / java / org / openecomp / core / zusammen / impl / ItemElementLoggerTargetServiceName.java
1 package org.openecomp.core.zusammen.impl;
2
3 /**
4  * @author Avrahamg.
5  * @since February 19, 2017
6  */
7 public enum ItemElementLoggerTargetServiceName {
8   ITEM_CREATION("Item Creation"),
9   ITEM_VERSION_CREATION("Item Version Creation"),
10   ELEMENT_CREATION("Element Creation"),
11   ELEMENT_UPDATE("Element Update"),
12   ELEMENT_LIST("Element List"),
13   ELEMENT_GET("Element Get"),
14   ELEMENT_GET_BY_PROPERTY("Element Get By Property"),
15   ITEM_RETRIEVAL("Item retrieval"),
16   ITEM_VERSION_RETRIEVAL("Item version retrieval)");
17
18   private final String description;
19
20   public String getDescription() {
21     return description;
22   }
23
24   ItemElementLoggerTargetServiceName(String description) {
25     this.description = description;
26   }
27 }