[DMAAP-CLIENT] First sonar issues review part2
[dmaap/messagerouter/dmaapclient.git] / src / main / java / org / onap / dmaap / mr / client / impl / Clock.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Modifications Copyright © 2021 Orange.
8  *  ================================================================================
9  *  Licensed under the Apache License, Version 2.0 (the "License");
10  *  you may not use this file except in compliance with the License.
11  *  You may obtain a copy of the License at
12  *        http://www.apache.org/licenses/LICENSE-2.0
13  *
14  *  Unless required by applicable law or agreed to in writing, software
15  *  distributed under the License is distributed on an "AS IS" BASIS,
16  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  *  See the License for the specific language governing permissions and
18  *  limitations under the License.
19  *  ============LICENSE_END=========================================================
20  *
21  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  *
23  *******************************************************************************/
24
25 package org.onap.dmaap.mr.client.impl;
26
27 public class Clock {
28     public static synchronized Clock getIt() {
29         if (sfClock == null) {
30             sfClock = new Clock();
31         }
32         return sfClock;
33     }
34
35     /**
36      * Get the system's current time in milliseconds.
37      *
38      * @return the current time
39      */
40     public static long now() {
41         return getIt().nowImpl();
42     }
43
44     /**
45      * Get current time in milliseconds.
46      *
47      * @return current time in ms
48      */
49     protected long nowImpl() {
50         return System.currentTimeMillis();
51     }
52
53     protected Clock() {
54     }
55
56     private static Clock sfClock = null;
57
58     protected static synchronized void register(Clock testClock) {
59         sfClock = testClock;
60     }
61 }