blob: 85c3f85cc38255f1125f03e74c31c1c5db37b7c3 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
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
22
23package org.onap.osam.model;
24
25public class CommandProperty {
26
27 private String displayName;
28
29 /** The command, "get_input" */
30 private String command;
31
32 /** The input name we refer to back under the inputs section */
33 private String inputName;
34
35 /**
36 * Gets the display name.
37 *
38 * @return the displayName
39 */
40 public String getDisplayName() {
41 return displayName;
42 }
43 /**
44 * Gets the command.
45 *
46 * @return the command
47 */
48 public String getCommand() {
49 return command;
50 }
51 /**
52 * Gets the inputName.
53 *
54 * @return the inputName
55 */
56 public String getInputName() {
57 return inputName;
58 }
59 /**
60 * Sets the display name value.
61 *
62 * @param i the new get_input value
63 */
64 public void setDisplayName(String i) {
65 this.displayName = i;
66 }
67 /**
68 * Sets the command value.
69 *
70 * @param i the new command value
71 */
72 public void setCommand(String i) {
73 this.command = i;
74 }
75
76 /**
77 * Sets the input name value.
78 *
79 * @param i the new input name value
80 */
81 public void setInputName(String i) {
82 this.inputName=i;
83 }
84
85 public String toString () {
86 String result = "displayName=" + displayName + " command=" + command + " inputName" + inputName;
87 return result;
88 }
89}