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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.clamp.acm.participant.intermediary.api.impl;
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;
38 * This class is api implementation used by participant intermediary.
41 public class ParticipantIntermediaryApiImpl implements ParticipantIntermediaryApi {
43 // The handler for the automationComposition intermediary
44 private final AutomationCompositionHandler automationCompositionHandler;
49 * @param automationCompositionHandler AutomationCompositionHandler
51 public ParticipantIntermediaryApiImpl(AutomationCompositionHandler automationCompositionHandler) {
52 this.automationCompositionHandler = automationCompositionHandler;
56 public void registerAutomationCompositionElementListener(
57 AutomationCompositionElementListener automationCompositionElementListener) {
58 automationCompositionHandler.registerAutomationCompositionElementListener(automationCompositionElementListener);
62 public void updateAutomationCompositionElementState(UUID automationCompositionId, UUID id, DeployState deployState,
63 LockState lockState, StateChangeResult stateChangeResult, String message) {
64 automationCompositionHandler.updateAutomationCompositionElementState(automationCompositionId, id, deployState,
69 public void sendAcElementInfo(UUID automationCompositionId, UUID elementId, String useState,
70 String operationalState, Map<String, Object> outProperties) {
71 automationCompositionHandler.sendAcElementInfo(automationCompositionId, elementId, useState, operationalState,
76 public Map<UUID, AutomationComposition> getAutomationCompositions() {
77 return PfUtils.mapMap(automationCompositionHandler.getAutomationCompositionMap(), AutomationComposition::new);
81 public void updateCompositionState(UUID compositionId, AcTypeState state, StateChangeResult stateChangeResult,
83 // Auto-generated method stub