Update the dependencies to use project version
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / dal / cache / InMemoryEntityCache.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
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 package org.onap.aai.sparky.dal.cache;
24
25 import java.util.concurrent.ConcurrentHashMap;
26
27 import org.onap.aai.sparky.dal.rest.OperationResult;
28 import org.onap.aai.sparky.logging.AaiUiMsgs;
29 import org.onap.aai.cl.api.Logger;
30 import org.onap.aai.cl.eelf.LoggerFactory;
31
32 /**
33  * The Class InMemoryEntityCache.
34  *
35  * @author davea.
36  */
37 public class InMemoryEntityCache implements EntityCache {
38
39   private ConcurrentHashMap<String, OperationResult> cachedEntityData;
40   private static final Logger LOG =
41       LoggerFactory.getInstance().getLogger(InMemoryEntityCache.class);
42
43   /**
44    * Instantiates a new in memory entity cache.
45    */
46   public InMemoryEntityCache() {
47     cachedEntityData = new ConcurrentHashMap<String, OperationResult>();
48   }
49
50   /*
51    * (non-Javadoc)
52    * 
53    * @see org.onap.aai.sparky.dal.cache.EntityCache#put(java.lang.String,
54    * org.onap.aai.sparky.dal.rest.OperationResult)
55    */
56   @Override
57   public void put(String key, OperationResult data) {
58     if (data == null) {
59       return;
60     }
61
62     if (cachedEntityData.putIfAbsent(key, data) != null) {
63       if (LOG.isDebugEnabled()) {
64         LOG.debug(AaiUiMsgs.DATA_CACHE_SUCCESS, key);
65       }
66     }
67
68   }
69
70   /*
71    * (non-Javadoc)
72    * 
73    * @see org.onap.aai.sparky.dal.cache.EntityCache#get(java.lang.String, java.lang.String)
74    */
75   @Override
76   public OperationResult get(String entityKey, String link) {
77
78     if (link != null) {
79       return cachedEntityData.get(link);
80     }
81
82     return null;
83   }
84
85   /*
86    * (non-Javadoc)
87    * 
88    * @see org.onap.aai.sparky.dal.cache.EntityCache#shutdown()
89    */
90   @Override
91   public void shutdown() {
92     // TODO Auto-generated method stub
93     // nothing to do
94
95   }
96
97   /*
98    * (non-Javadoc)
99    * 
100    * @see org.onap.aai.sparky.dal.cache.EntityCache#clear()
101    */
102   @Override
103   public void clear() {
104     cachedEntityData.clear();
105   }
106
107 }