summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-core-lib/openecomp-zusammen-lib/openecomp-zusammen-core/src/main/java/org/openecomp/core/zusammen/impl/ItemElementLoggerTargetServiceName.java
blob: 1a4466a3c5c8f5f240d606b53827ce7d9975b6a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.openecomp.core.zusammen.impl;

/**
 * @author Avrahamg.
 * @since February 19, 2017
 */
public enum ItemElementLoggerTargetServiceName {
  ITEM_CREATION("Item Creation"),
  ITEM_VERSION_CREATION("Item Version Creation"),
  ELEMENT_CREATION("Element Creation"),
  ELEMENT_UPDATE("Element Update"),
  ELEMENT_LIST("Element List"),
  ELEMENT_GET("Element Get"),
  ELEMENT_GET_BY_PROPERTY("Element Get By Property"),
  ITEM_RETRIEVAL("Item retrieval"),
  ITEM_VERSION_RETRIEVAL("Item version retrieval)");

  private final String description;

  public String getDescription() {
    return description;
  }

  ItemElementLoggerTargetServiceName(String description) {
    this.description = description;
  }
}