Changing the license and trademark
[aai/sparky-be.git] / src / main / java / org / openecomp / 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.openecomp.sparky.dal.cache;
24
25 import java.util.concurrent.ConcurrentHashMap;
26
27 import org.openecomp.cl.api.Logger;
28 import org.openecomp.cl.eelf.LoggerFactory;
29 import org.openecomp.sparky.dal.rest.OperationResult;
30 import org.openecomp.sparky.logging.AaiUiMsgs;
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   /* (non-Javadoc)
51    * @see org.openecomp.sparky.dal.cache.EntityCache#put(java.lang.String, org.openecomp.sparky.dal.rest.OperationResult)
52    */
53   @Override
54   public void put(String key, OperationResult data) {
55     if (data == null) {
56       return;
57     }
58
59     if (cachedEntityData.putIfAbsent(key, data) != null) {
60       if (LOG.isDebugEnabled()) {
61         LOG.debug(AaiUiMsgs.DATA_CACHE_SUCCESS, key);
62       }
63     }
64
65   }
66
67   /* (non-Javadoc)
68    * @see org.openecomp.sparky.dal.cache.EntityCache#get(java.lang.String, java.lang.String)
69    */
70   @Override
71   public OperationResult get(String entityKey, String link) {
72
73     if (link != null) {
74       return cachedEntityData.get(link);
75     }
76
77     return null;
78   }
79
80   /* (non-Javadoc)
81    * @see org.openecomp.sparky.dal.cache.EntityCache#shutdown()
82    */
83   @Override
84   public void shutdown() {
85     // TODO Auto-generated method stub
86     // nothing to do
87
88   }
89
90   /* (non-Javadoc)
91    * @see org.openecomp.sparky.dal.cache.EntityCache#clear()
92    */
93   @Override
94   public void clear() {
95     cachedEntityData.clear();
96   }
97
98 }