14a65311301f3696354ff6e971dde1eacbba41ca
[policy/clamp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021-2023 Nordix Foundation.
4  *  Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.clamp.acm.participant.intermediary.api.impl;
23
24 import java.util.Map;
25 import java.util.UUID;
26 import org.onap.policy.clamp.acm.participant.intermediary.api.AutomationCompositionElementListener;
27 import org.onap.policy.clamp.acm.participant.intermediary.api.ParticipantIntermediaryApi;
28 import org.onap.policy.clamp.acm.participant.intermediary.handler.AutomationCompositionHandler;
29 import org.onap.policy.clamp.models.acm.concepts.AcTypeState;
30 import org.onap.policy.clamp.models.acm.concepts.AutomationComposition;
31 import org.onap.policy.clamp.models.acm.concepts.DeployState;
32 import org.onap.policy.clamp.models.acm.concepts.LockState;
33 import org.onap.policy.clamp.models.acm.concepts.StateChangeResult;
34 import org.onap.policy.models.base.PfUtils;
35 import org.springframework.stereotype.Component;
36
37 /**
38  * This class is api implementation used by participant intermediary.
39  */
40 @Component
41 public class ParticipantIntermediaryApiImpl implements ParticipantIntermediaryApi {
42
43     // The handler for the automationComposition intermediary
44     private final AutomationCompositionHandler automationCompositionHandler;
45
46     /**
47      * Constructor.
48      *
49      * @param automationCompositionHandler AutomationCompositionHandler
50      */
51     public ParticipantIntermediaryApiImpl(AutomationCompositionHandler automationCompositionHandler) {
52         this.automationCompositionHandler = automationCompositionHandler;
53     }
54
55     @Override
56     public void registerAutomationCompositionElementListener(
57             AutomationCompositionElementListener automationCompositionElementListener) {
58         automationCompositionHandler.registerAutomationCompositionElementListener(automationCompositionElementListener);
59     }
60
61     @Override
62     public void updateAutomationCompositionElementState(UUID automationCompositionId, UUID id, DeployState deployState,
63             LockState lockState, StateChangeResult stateChangeResult, String message) {
64         automationCompositionHandler.updateAutomationCompositionElementState(automationCompositionId, id, deployState,
65                 lockState, message);
66     }
67
68     @Override
69     public void sendAcElementInfo(UUID automationCompositionId, UUID elementId, String useState,
70             String operationalState, Map<String, Object> outProperties) {
71         automationCompositionHandler.sendAcElementInfo(automationCompositionId, elementId, useState, operationalState,
72                 outProperties);
73     }
74
75     @Override
76     public Map<UUID, AutomationComposition> getAutomationCompositions() {
77         return PfUtils.mapMap(automationCompositionHandler.getAutomationCompositionMap(), AutomationComposition::new);
78     }
79
80     @Override
81     public void updateCompositionState(UUID compositionId, AcTypeState state, StateChangeResult stateChangeResult,
82             String message) {
83         // Auto-generated method stub
84     }
85 }