ebbed2100dcf284855aacedecc97d4d08e2a5358
[policy/engine.git] / PolicyEngineUtils / src / main / java / org / onap / policy / std / StdLoadedPolicy.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineUtils
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.policy.std;
22
23 import java.util.Map;
24
25 import org.onap.policy.api.LoadedPolicy;
26 import org.onap.policy.api.UpdateType;
27
28 public class StdLoadedPolicy implements LoadedPolicy{
29         private String policyName = null;
30         private String versionNo = null;
31         private Map<String,String> matches = null;
32         private UpdateType updateType = null;
33         
34         @Override
35         public String getPolicyName() {
36                 if(policyName!=null && policyName.contains(".xml")){
37                         return policyName.substring(0, policyName.substring(0, policyName.lastIndexOf('.')).lastIndexOf('.'));
38                 }
39                 return this.policyName;
40         }
41         
42         public void setPolicyName(String policyName) {
43                 this.policyName = policyName;
44         }
45         
46         @Override
47         public String getVersionNo() {
48                 return this.versionNo;
49         }
50         
51         public void setVersionNo(String versionNo) {
52                 this.versionNo = versionNo;
53         }
54         
55         @Override
56         public Map<String,String> getMatches() {
57                 return this.matches;
58         }
59         
60         public void setMatches(Map<String,String> matches) {
61                 this.matches = matches;
62         }
63
64         @Override
65         public UpdateType getUpdateType() {
66                 return this.updateType;
67         }
68         
69         public void setUpdateType(UpdateType updateType){
70                 this.updateType = updateType;
71         }
72 }