Sonar Fixes, Formatting
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / principal / CachedBasicPrincipal.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 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
22 package org.onap.aaf.cadi.principal;
23
24 import java.io.IOException;
25
26 import org.onap.aaf.cadi.BasicCred;
27 import org.onap.aaf.cadi.CachedPrincipal;
28 import org.onap.aaf.cadi.taf.HttpTaf;
29
30 /**
31  * Cached Principals need to be able to revalidate in the Background
32  *
33  * @author Jonathan
34  *
35  */
36 public class CachedBasicPrincipal extends BasicPrincipal implements CachedPrincipal {
37     private final HttpTaf creator;
38     private long timeToLive;
39     private long expires;
40
41     public CachedBasicPrincipal(HttpTaf creator, BasicCred bc, String domain, long timeToLive) {
42         super(bc, domain);
43         this.creator = creator;
44         this.timeToLive = timeToLive;
45         expires = System.currentTimeMillis()+timeToLive;
46     }
47
48     public CachedBasicPrincipal(HttpTaf creator, String content, String domain, long timeToLive) throws IOException {
49         super(content, domain);
50         this.creator = creator;
51         this.timeToLive = timeToLive;
52         expires = System.currentTimeMillis()+timeToLive;
53     }
54
55     public CachedPrincipal.Resp revalidate(Object state) {
56         Resp resp = creator.revalidate(this, state);
57         if (resp.equals(Resp.REVALIDATED))expires = System.currentTimeMillis()+timeToLive;
58         return resp;
59     }
60
61     public long expires() {
62         return expires;
63     }
64
65 }