instantiate and terminate servce
[usecase-ui/server.git] / src / main / java / org / onap / usecaseui / server / bean / lcm / TemplateInput.java
1 /**
2  * Copyright 2016-2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.usecaseui.server.bean.lcm;
17
18 public class TemplateInput {
19
20     private String name;
21
22     private String type;
23
24     private String description;
25
26     private String isRequired;
27
28     private String defaultValue;
29
30     public TemplateInput(String name, String type, String description, String isRequired, String defaultValue) {
31         this.name = name;
32         this.type = type;
33         this.description = description;
34         this.isRequired = isRequired;
35         this.defaultValue = defaultValue;
36     }
37
38     public String getName() {
39         return name;
40     }
41
42     public String getType() {
43         return type;
44     }
45
46     public String getDescription() {
47         return description;
48     }
49
50     public String getIsRequired() {
51         return isRequired;
52     }
53
54     public String getDefaultValue() {
55         return defaultValue;
56     }
57 }