[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / common / openecomp-tosca-datatype / src / main / java / org / openecomp / sdc / tosca / datatypes / model / ParameterDefinition.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
25
26
27 public class ParameterDefinition {
28
29   private String type;
30   private String description;
31   private Object value;
32   private Boolean required;
33   private Object _default;
34   private Status status;
35   private List<Constraint> constraints;
36   private EntrySchema entry_schema;
37
38   public String getType() {
39     return type;
40   }
41
42   public void setType(String type) {
43     this.type = type;
44   }
45
46   public String getDescription() {
47     return description;
48   }
49
50   public void setDescription(String description) {
51     this.description = description;
52   }
53
54   public Object getValue() {
55     return value;
56   }
57
58   public void setValue(Object value) {
59     this.value = value;
60   }
61
62   public Boolean getRequired() {
63     return required;
64   }
65
66   public void setRequired(Boolean required) {
67     this.required = required;
68   }
69
70   public Object get_default() {
71     return _default;
72   }
73
74   public void set_default(Object _default) {
75     this._default = _default;
76   }
77
78   public Status getStatus() {
79     return status;
80   }
81
82   public void setStatus(Status status) {
83     this.status = status;
84   }
85
86   public List<Constraint> getConstraints() {
87     return constraints;
88   }
89
90   public void setConstraints(List<Constraint> constraints) {
91     this.constraints = constraints;
92   }
93
94   public EntrySchema getEntry_schema() {
95     return entry_schema;
96   }
97
98   public void setEntry_schema(EntrySchema entry_schema) {
99     this.entry_schema = entry_schema;
100   }
101 }