1588bcafc0f20ef06902349dbee84b141825535e
[sdc.git] /
1 package org.openecomp.core.logging.api.annotations;
2
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
7
8 /**
9  * Indicates a method whose execution time should be measured and logged as required for OPENECOMP
10  * metrics.
11  */
12 @Target(ElementType.METHOD)
13 @Retention(RetentionPolicy.RUNTIME)
14 public @interface Metrics {
15 }