Containerization feature of SO
[so.git] / adapters / mso-adapter-utils / src / main / java / org / onap / so / openstack / beans / HeatCacheEntry.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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.openstack.beans;
22
23 import java.io.Serializable;
24 import java.util.Calendar;
25
26 import com.woorea.openstack.heat.Heat;
27
28 /*
29  * An entry in the Heat Client Cache. It saves the Heat client object
30  * along with the token expiration. After this interval, this cache
31  * item will no longer be used.
32  */
33 public class HeatCacheEntry implements Serializable {
34
35     private static final long serialVersionUID = 1L;
36
37     private String heatUrl;
38     private String token;
39     private Calendar expires;
40
41     public HeatCacheEntry (String heatUrl, String token, Calendar expires) {
42         this.heatUrl = heatUrl;
43         this.token = token;
44         this.expires = expires;
45     }
46
47     public Heat getHeatClient () {
48         Heat heatClient = new Heat (heatUrl);
49         heatClient.token (token);
50         return heatClient;
51     }
52
53     public boolean isExpired () {
54         if (expires == null) {
55             return true;
56         }
57
58         return System.currentTimeMillis() > expires.getTimeInMillis();
59     }
60 }