Closed loop operation guarantee for ccvpn
[policy/models.git] / models-interactions / model-actors / actor.so / src / main / java / org / onap / policy / controlloop / actor / so / SoActor.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * Modifications Copyright (C) 2020 Wipro Limited.
8  * Modifications Copyright (C) 2022 CTC, Inc. and others.
9  * ================================================================================
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  *      http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.policy.controlloop.actor.so;
25
26 import org.onap.policy.controlloop.actorserviceprovider.impl.HttpActor;
27 import org.onap.policy.controlloop.actorserviceprovider.impl.HttpPollingOperator;
28 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpPollingActorParams;
29
30 public class SoActor extends HttpActor<HttpPollingActorParams> {
31     public static final String NAME = "SO";
32
33     /**
34      * Constructs the object.
35      */
36     public SoActor() {
37         super(NAME, HttpPollingActorParams.class);
38
39         addOperator(new HttpPollingOperator(NAME, VfModuleCreate.NAME, VfModuleCreate::new));
40         addOperator(new HttpPollingOperator(NAME, VfModuleDelete.NAME, VfModuleDelete::new));
41         addOperator(new HttpPollingOperator(NAME, ModifyNssi.NAME, ModifyNssi::new));
42         addOperator(new HttpPollingOperator(NAME, ModifyNssi.NAME, ModifyCll::new));
43     }
44 }