Merge "VES Heartbeat and Software Management Feature"
[oam/tr069-adapter.git] / acs / requestprocessor / src / main / java / org / commscope / tr069adapter / acs / requestprocessor / util / TR069RequestProcessorCacheUtil.java
1 /*\r
2  * ============LICENSE_START========================================================================\r
3  * ONAP : tr-069-adapter\r
4  * =================================================================================================\r
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.\r
6  * =================================================================================================\r
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,\r
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You\r
9  * may obtain a copy of the License at\r
10  *\r
11  * http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\r
14  * either express or implied. See the License for the specific language governing permissions and\r
15  * limitations under the License.\r
16  * ===============LICENSE_END=======================================================================\r
17  */\r
18 \r
19 \r
20 package org.commscope.tr069adapter.acs.requestprocessor.util;\r
21 \r
22 import org.commscope.tr069adapter.acs.requestprocessor.dto.TR069RequestProcessorData;\r
23 import org.slf4j.Logger;\r
24 import org.slf4j.LoggerFactory;\r
25 import org.springframework.stereotype.Component;\r
26 import org.springframework.transaction.support.TransactionSynchronization;\r
27 \r
28 @Component\r
29 public class TR069RequestProcessorCacheUtil implements TransactionSynchronization {\r
30 \r
31   private static final Logger logger =\r
32       LoggerFactory.getLogger(TR069RequestProcessorCacheUtil.class);\r
33 \r
34   private static ThreadLocal<TR069RequestProcessorData> threadLocalCache = new ThreadLocal<>();\r
35 \r
36   public void put(TR069RequestProcessorData tR069RequestProcessorData) {\r
37 \r
38     try {\r
39       logger.debug("Entering put");\r
40       threadLocalCache.set(tR069RequestProcessorData);\r
41     } catch (Exception e) {\r
42       throw new IllegalStateException(e.getMessage());\r
43     }\r
44   }\r
45 \r
46   public static TR069RequestProcessorData get() {\r
47     return threadLocalCache.get();\r
48   }\r
49 \r
50   @Override\r
51   public void beforeCompletion() {\r
52     logger.debug("Entering beforeCompletion");\r
53     threadLocalCache.remove();\r
54   }\r
55 \r
56   @Override\r
57   public void afterCompletion(int status) {\r
58     throw new UnsupportedOperationException();\r
59   }\r
60 \r
61   @Override\r
62   public void afterCommit() {\r
63     throw new UnsupportedOperationException();\r
64   }\r
65 \r
66   @Override\r
67   public void beforeCommit(boolean arg0) {\r
68     throw new UnsupportedOperationException();\r
69   }\r
70 \r
71   @Override\r
72   public void flush() {\r
73     throw new UnsupportedOperationException();\r
74   }\r
75 \r
76   @Override\r
77   public void resume() {\r
78     throw new UnsupportedOperationException();\r
79   }\r
80 \r
81   @Override\r
82   public void suspend() {\r
83     throw new UnsupportedOperationException();\r
84   }\r
85 }\r