2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.sdc.ci.tests.tosca.datatypes;
23 public class ParametersDefinition {
26 private String description;
27 private Object Default;
28 private String status;
29 // private List<Constraints> constraints;
30 private String entry_schema;
33 public ParametersDefinition() {
37 public ParametersDefinition(String type, String description, Object default1, String status, String entry_schema, Object value) {
40 this.description = description;
43 this.entry_schema = entry_schema;
47 public String getType() {
51 public void setType(String type) {
55 public String getDescription() {
59 public void setDescription(String description) {
60 this.description = description;
63 public Object getDefault() {
67 public void setDefault(Object default1) {
71 public String getStatus() {
75 public void setStatus(String status) {
79 public String getEntry_schema() {
83 public void setEntry_schema(String entry_schema) {
84 this.entry_schema = entry_schema;
87 public Object getValue() {
91 public void setValue(Object value) {
96 public String toString() {
97 return "ParametersDefinition [type=" + type + ", description=" + description + ", Default=" + Default + ", status=" + status + ", entry_schema=" + entry_schema + ", value=" + value + "]";