fb722ea2f44ccf0ffb17881e84c429a83c704c3a
[policy/apex-pdp.git] /
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.service.engine.event.impl.eventrequestor;
22
23 import org.onap.policy.apex.service.parameters.carriertechnology.CarrierTechnologyParameters;
24
25 /**
26  * This class holds the parameters that allows an output event to to be sent back into APEX as one
27  * or multiple input events, there are no user defined parameters.
28  *
29  * @author Liam Fallon (liam.fallon@ericsson.com)
30  */
31 public class EventRequestorCarrierTechnologyParameters extends CarrierTechnologyParameters {
32     // @formatter:off
33     /** The label of this carrier technology. */
34     public static final String EVENT_REQUESTOR_CARRIER_TECHNOLOGY_LABEL = "EVENT_REQUESTOR";
35
36     /** The producer plugin class for the EVENT_REQUESTOR carrier technology. */
37     public static final String EVENT_REQUESTOR_EVENT_PRODUCER_PLUGIN_CLASS =
38             EventRequestorProducer.class.getCanonicalName();
39
40     /** The consumer plugin class for the EVENT_REQUESTOR carrier technology. */
41     public static final String EVENT_REQUESTOR_EVENT_CONSUMER_PLUGIN_CLASS =
42             EventRequestorConsumer.class.getCanonicalName();
43     // @formatter:on
44
45     /**
46      * Constructor to create an event requestor carrier technology parameters instance and register
47      * the instance with the parameter service.
48      */
49     public EventRequestorCarrierTechnologyParameters() {
50         super(EventRequestorCarrierTechnologyParameters.class.getCanonicalName());
51
52         // Set the carrier technology properties for the EVENT_REQUESTOR carrier technology
53         this.setLabel(EVENT_REQUESTOR_CARRIER_TECHNOLOGY_LABEL);
54         this.setEventProducerPluginClass(EVENT_REQUESTOR_EVENT_PRODUCER_PLUGIN_CLASS);
55         this.setEventConsumerPluginClass(EVENT_REQUESTOR_EVENT_CONSUMER_PLUGIN_CLASS);
56     }
57
58     /*
59      * (non-Javadoc)
60      *
61      * @see org.onap.policy.apex.apps.uservice.parameters.ApexParameterValidator#validate()
62      */
63     @Override
64     public String validate() {
65         return "";
66     }
67 }