c96e43c2922c4f2a9050fdb924ed923831b46898
[policy/apex-pdp.git] / client / client-editor / src / main / java / org / onap / policy / apex / client / editor / rest / handling / bean / BeanEvent.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.Map;
24
25 import javax.xml.bind.annotation.XmlType;
26
27 /**
28  * The Event Bean.
29  */
30 @XmlType
31 public class BeanEvent extends BeanBase {
32     private String name = null;
33     private String version = null;
34     private String nameSpace = null;
35     private String source = null;
36     private String target = null;
37     private String uuid = null;
38     private String description = null;
39     private Map<String, BeanField> parameters = null;
40
41     /**
42      * Gets the name.
43      *
44      * @return the name
45      */
46     public String getName() {
47         return name;
48     }
49
50     /**
51      * Gets the version.
52      *
53      * @return the version
54      */
55     public String getVersion() {
56         return version;
57     }
58
59     /**
60      * Gets the name space.
61      *
62      * @return the name space
63      */
64     public String getNameSpace() {
65         return nameSpace;
66     }
67
68     /**
69      * Gets the source.
70      *
71      * @return the source
72      */
73     public String getSource() {
74         return source;
75     }
76
77     /**
78      * Gets the target.
79      *
80      * @return the target
81      */
82     public String getTarget() {
83         return target;
84     }
85
86     /**
87      * Gets the uuid.
88      *
89      * @return the uuid
90      */
91     public String getUuid() {
92         return uuid;
93     }
94
95     /**
96      * Gets the description.
97      *
98      * @return the description
99      */
100     public String getDescription() {
101         return description;
102     }
103
104     /**
105      * Gets the parameters.
106      *
107      * @return the parameters
108      */
109     public Map<String, BeanField> getParameters() {
110         return parameters;
111     }
112
113     /**
114      * Gets the parameter.
115      *
116      * @param ps the parameter string
117      * @return the parameter
118      */
119     public BeanField getParameter(final String ps) {
120         if (parameters != null) {
121             return parameters.get(ps);
122         }
123         return null;
124     }
125
126     /**
127      * {@inheritDoc}.
128      */
129     @Override
130     public String toString() {
131         return "Event [name=" + name + ", version=" + version + ", nameSpace=" + nameSpace + ", source=" + source
132                 + ", target=" + target + ", uuid=" + uuid + ", description=" + description + ", parameters="
133                 + getParameters() + "]";
134     }
135
136 }