Containerization feature of SO
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / client / appc / ApplicationControllerConfiguration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.client.appc;
22
23 import org.springframework.beans.factory.annotation.Value;
24 import org.springframework.context.annotation.Configuration;
25 import org.springframework.stereotype.Service;
26
27 @Configuration
28 public class ApplicationControllerConfiguration {
29         @Value("${appc.client.topic.read.name}")
30         private String readTopic;
31
32         @Value("${appc.client.topic.read.timeout}")
33         private String readTimeout;
34
35         @Value("${appc.client.response.timeout}")
36         private String responseTimeout;
37
38         @Value("${appc.client.topic.write}")
39         private String write;
40
41         @Value("${appc.client.poolMembers}")
42         private String poolMembers;
43
44         @Value("${appc.client.key}")
45         private String clientKey;
46
47         @Value("${appc.client.secret}")
48         private String clientSecret;
49
50         @Value("${appc.client.service}")
51         private String service;
52
53         public String getClientKey() {
54                 return clientKey;
55         }
56
57         public String getClientSecret() {
58                 return clientSecret;
59         }
60
61         public String getPoolMembers() {
62                 return poolMembers;
63         }
64         
65         public String getReadTimeout() {
66                 return readTimeout;
67         }
68
69         public String getResponseTimeout() {
70                 return responseTimeout;
71         }
72
73         public String getReadTopic() {
74                 return readTopic;
75         }
76
77         public String getService() {
78                 return service;
79         }
80
81         public String getWrite() {
82                 return write;
83         }
84 }
85