Ensure HttpEntry bean is request scoped in aai-common
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / config / RestBeanConfig.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright © 2018 IBM.
8  * Modifications Copyright © 2024 DEUTSCHE TELEKOM AG.
9  * ================================================================================
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  *    http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.aai.config;
25
26 import org.onap.aai.introspection.ModelType;
27 import org.onap.aai.rest.db.HttpEntry;
28 import org.onap.aai.serialization.engines.QueryStyle;
29 import org.springframework.context.annotation.Bean;
30 import org.springframework.context.annotation.Configuration;
31 import org.springframework.web.context.annotation.RequestScope;
32
33 @Configuration
34 public class RestBeanConfig {
35     @RequestScope
36     @Bean(name = "traversalUriHttpEntry")
37     public HttpEntry traversalUriHttpEntry() {
38         return new HttpEntry(ModelType.MOXY, QueryStyle.TRAVERSAL_URI);
39     }
40
41     @RequestScope
42     @Bean(name = "traversalHttpEntry")
43     public HttpEntry traversalHttpEntry() {
44         return new HttpEntry(ModelType.MOXY, QueryStyle.TRAVERSAL);
45     }
46
47 }