Changes for checkstyle 8.32
[policy/apex-pdp.git] / client / client-editor / src / main / java / org / onap / policy / apex / client / editor / rest / handling / bean / BeanTask.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.client.editor.rest.handling.bean;
22
23 import java.util.Arrays;
24 import java.util.Map;
25 import javax.xml.bind.annotation.XmlType;
26
27 /**
28  * The Task Bean.
29  */
30 @XmlType
31 public class BeanTask extends BeanBase {
32     private String name = null;
33     private String version = null;
34     private String uuid = null;
35     private String description = null;
36     private BeanLogic taskLogic = null;
37     private Map<String, BeanField> inputFields = null;
38     private Map<String, BeanField> outputFields = null;
39     private Map<String, BeanTaskParameter> parameters = null;
40     private BeanKeyRef[] contexts = null;
41
42     /**
43      * Gets the name.
44      *
45      * @return the name
46      */
47     public String getName() {
48         return name;
49     }
50
51     /**
52      * Gets the version.
53      *
54      * @return the version
55      */
56     public String getVersion() {
57         return version;
58     }
59
60     /**
61      * Gets the uuid.
62      *
63      * @return the uuid
64      */
65     public String getUuid() {
66         return uuid;
67     }
68
69     /**
70      * Gets the description.
71      *
72      * @return the description
73      */
74     public String getDescription() {
75         return description;
76     }
77
78     /**
79      * Gets the task logic.
80      *
81      * @return the task logic
82      */
83     public BeanLogic getTaskLogic() {
84         return taskLogic;
85     }
86
87     /**
88      * Gets the input fields.
89      *
90      * @return the input fields
91      */
92     public Map<String, BeanField> getInputFields() {
93         return inputFields;
94     }
95
96     /**
97      * Gets the output fields.
98      *
99      * @return the output fields
100      */
101     public Map<String, BeanField> getOutputFields() {
102         return outputFields;
103     }
104
105     /**
106      * Gets the parameters.
107      *
108      * @return the parameters
109      */
110     public Map<String, BeanTaskParameter> getParameters() {
111         return parameters;
112     }
113
114     /**
115      * Gets the contexts.
116      *
117      * @return the contexts
118      */
119     public BeanKeyRef[] getContexts() {
120         return contexts;
121     }
122
123     /**
124      * {@inheritDoc}.
125      */
126     @Override
127     public String toString() {
128         return "BeanTask [name=" + name + ", version=" + version + ", uuid=" + uuid + ", description=" + description
129                 + ", taskLogic=" + taskLogic + ", inputFields=" + inputFields + ", outputFields=" + outputFields
130                 + ", parameters=" + parameters + ", contexts=" + Arrays.toString(contexts) + "]";
131     }
132 }