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