Catalog alignment
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / filters / FilterConfiguration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2020 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.openecomp.sdc.be.filters;
22
23 import org.onap.sdc.security.ISessionValidationFilterConfiguration;
24 import org.openecomp.sdc.be.config.Configuration;
25
26 import java.util.List;
27
28 public class FilterConfiguration implements ISessionValidationFilterConfiguration {
29
30     protected Configuration config;
31
32     public FilterConfiguration(org.openecomp.sdc.be.config.Configuration configuration) {
33         this.config = configuration;
34     }
35
36     @Override
37     public String getSecurityKey() {
38         return config.getAuthCookie().getSecurityKey();
39     }
40
41     @Override
42     public long getMaxSessionTimeOut() {
43         return config.getAuthCookie().getMaxSessionTimeOut();
44     }
45
46     @Override
47     public long getSessionIdleTimeOut() {
48         return config.getAuthCookie().getSessionIdleTimeOut();
49     }
50
51     @Override
52     public String getRedirectURL() {
53         return config.getAuthCookie().getRedirectURL();
54     }
55
56     @Override
57     public List<String> getExcludedUrls() {
58         return config.getAuthCookie().getExcludedUrls();
59     }
60
61     @Override
62     public String getCookieName() {
63         return config.getAuthCookie().getCookieName();
64     }
65
66     @Override
67     public String getCookieDomain() {
68         return config.getAuthCookie().getDomain();
69     }
70
71     @Override
72     public String getCookiePath() {
73         return config.getAuthCookie().getPath();
74     }
75
76     @Override
77     public boolean isCookieHttpOnly() {
78         return config.getAuthCookie().isHttpOnly();
79     }
80 }