55a13d5a6c5b74b2eead78d71c637a6759650a7a
[sdc.git] / common / openecomp-tosca-datatype / src / main / java / org / openecomp / sdc / tosca / datatypes / model / PolicyType.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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.openecomp.sdc.tosca.datatypes.model;
22
23 import java.util.List;
24 import java.util.Map;
25
26
27
28 public class PolicyType {
29
30   private String derived_from;
31   private String version;
32   private Map<String, String> metadata;
33   private String description;
34   private Map<String, PropertyDefinition> properties;
35   private List<String> targets;
36   private List<Trigger> triggers;
37
38   public String getDerived_from() {
39     return derived_from;
40   }
41
42   public void setDerived_from(String derived_from) {
43     this.derived_from = derived_from;
44   }
45
46   public String getVersion() {
47     return version;
48   }
49
50   public void setVersion(String version) {
51     this.version = version;
52   }
53
54   public String getDescription() {
55     return description;
56   }
57
58   public void setDescription(String description) {
59     this.description = description;
60   }
61
62   public Map<String, PropertyDefinition> getProperties() {
63     return properties;
64   }
65
66   public void setProperties(Map<String, PropertyDefinition> properties) {
67     this.properties = properties;
68   }
69
70   public List<String> getTargets() {
71     return targets;
72   }
73
74   public void setTargets(List<String> targets) {
75     this.targets = targets;
76   }
77
78   public Map<String, String> getMetadata() {
79     return metadata;
80   }
81
82   public void setMetadata(Map<String, String> metadata) {
83     this.metadata = metadata;
84   }
85
86   public List<Trigger> getTriggers() {
87     return triggers;
88   }
89
90   public void setTriggers(
91       List<Trigger> triggers) {
92     this.triggers = triggers;
93   }
94 }