Introduce caffeine cache
[cps.git] / cps-service / src / main / java / org / onap / cps / config / CacheConfig.java
1 package org.onap.cps.config;
2
3 /*
4  * ============LICENSE_START=======================================================
5  *  Copyright (C) 2020 Pantheon.tech
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  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 import org.springframework.cache.annotation.EnableCaching;
23 import org.springframework.context.annotation.Configuration;
24
25 @Configuration
26 @EnableCaching
27 public class CacheConfig {
28
29 }