dbdaff3d0fc8e362b758a1eb353729d342ecfad6
[sdc.git] /
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.ci.tests.tosca.datatypes;
22
23 public class ParametersDefinition {
24         
25         private String type;
26         private String description;
27         private Object Default;
28         private String status;
29 //      private List<Constraints> constraints;
30         private String entry_schema;
31         private Object value;
32         
33         public ParametersDefinition() {
34                 super();
35         }
36
37         public ParametersDefinition(String type, String description, Object default1, String status, String entry_schema, Object value) {
38                 super();
39                 this.type = type;
40                 this.description = description;
41                 Default = default1;
42                 this.status = status;
43                 this.entry_schema = entry_schema;
44                 this.value = value;
45         }
46
47         public String getType() {
48                 return type;
49         }
50
51         public void setType(String type) {
52                 this.type = type;
53         }
54
55         public String getDescription() {
56                 return description;
57         }
58
59         public void setDescription(String description) {
60                 this.description = description;
61         }
62
63         public Object getDefault() {
64                 return Default;
65         }
66
67         public void setDefault(Object default1) {
68                 Default = default1;
69         }
70
71         public String getStatus() {
72                 return status;
73         }
74
75         public void setStatus(String status) {
76                 this.status = status;
77         }
78
79         public String getEntry_schema() {
80                 return entry_schema;
81         }
82
83         public void setEntry_schema(String entry_schema) {
84                 this.entry_schema = entry_schema;
85         }
86
87         public Object getValue() {
88                 return value;
89         }
90
91         public void setValue(Object value) {
92                 this.value = value;
93         }
94
95         @Override
96         public String toString() {
97                 return "ParametersDefinition [type=" + type + ", description=" + description + ", Default=" + Default + ", status=" + status + ", entry_schema=" + entry_schema + ", value=" + value + "]";
98         }
99         
100         
101         
102 }