7c553ad5ba5d3d81ecb475e47773b1c446f58bbb
[portal/sdk.git] /
1 /*-
2  * ================================================================================
3  * eCOMP Portal SDK
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ================================================================================
19  */
20 package org.openecomp.portalsdk.core.objectcache;
21
22 import java.io.*;
23
24 import org.openecomp.portalsdk.core.objectcache.support.*;
25
26
27 public abstract class AbstractCacheManager implements FusionCacheManager {
28   public AbstractCacheManager() {
29     super();
30     // TODO Auto-generated constructor stub
31   }
32
33   public Object getObject(String key) {
34     // TODO Auto-generated method stub
35     return null;
36   }
37
38   public void putObject(String key, Object objectToCache) {
39     // TODO Auto-generated method stub
40   }
41
42   public boolean isObjectInCache(String key) {
43     // TODO Auto-generated method stub
44     return false;
45   }
46
47   public void removeObject(String key) {
48     // TODO Auto-generated method stub
49   }
50
51   public void clearCache() {
52     // TODO Auto-generated method stub
53   }
54
55   public void configure() throws IOException {
56     // TODO Auto-generated method stub
57
58   }
59 }
60