Refactoring Consolidation Service
[sdc.git] / common-app-api / src / main / java / org / openecomp / sdc / common / ecomplog / api / IStopWatch.java
1 package org.openecomp.sdc.common.ecomplog.api;
2
3 /**
4  * Created by dd4296 on 12/14/2017.
5  *
6  * stop watch interface compliant with ecomplog stop watch class
7  */
8 public interface IStopWatch {
9     void start();
10     void stop();
11 }