2 * ========================LICENSE_START=================================
4 * ======================================================================
5 * Copyright (C) 2019-2020 Nordix Foundation. All rights reserved.
6 * ======================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ========================LICENSE_END===================================
21 package org.onap.ccsdk.oran.a1policymanagementservice.repository;
23 import java.util.Collection;
24 import java.util.HashMap;
26 import java.util.Vector;
31 import org.onap.ccsdk.oran.a1policymanagementservice.clients.A1Client.A1ProtocolType;
32 import org.onap.ccsdk.oran.a1policymanagementservice.configuration.RicConfig;
35 * Holds information about a Near-RT RIC.
40 private RicConfig ricConfig;
41 private RicState state = RicState.UNAVAILABLE;
42 private Map<String, PolicyType> supportedPolicyTypes = new HashMap<>();
45 private A1ProtocolType protocolVersion = A1ProtocolType.UNKNOWN;
48 private final Lock lock;
51 * Creates the Ric. Initial state is {@link RicState.UNDEFINED}.
53 * @param ricConfig The {@link RicConfig} for this Ric.
55 public Ric(RicConfig ricConfig) {
56 this.ricConfig = ricConfig;
57 this.lock = new Lock(ricConfig.ricId());
61 return ricConfig.ricId();
64 public RicConfig getConfig() {
65 return this.ricConfig;
68 public synchronized RicState getState() {
72 public synchronized void setState(RicState state) {
77 * Gets the nodes managed by this Ric.
79 * @return a vector containing the nodes managed by this Ric.
81 public synchronized Collection<String> getManagedElementIds() {
82 return new Vector<>(ricConfig.managedElementIds());
86 * Determines if the given node is managed by this Ric.
88 * @param managedElementId the node name to check.
89 * @return true if the given node is managed by this Ric.
91 public synchronized boolean isManaging(String managedElementId) {
92 return ricConfig.managedElementIds().contains(managedElementId);
96 * Gets the policy types supported by this Ric.
98 * @return the policy types supported by this Ric in an unmodifiable list.
100 public synchronized Collection<PolicyType> getSupportedPolicyTypes() {
101 return new Vector<>(supportedPolicyTypes.values());
104 public synchronized Collection<String> getSupportedPolicyTypeNames() {
105 return new Vector<>(supportedPolicyTypes.keySet());
109 * Adds a policy type as supported by this Ric.
111 * @param type the policy type to support.
113 public synchronized void addSupportedPolicyType(PolicyType type) {
114 supportedPolicyTypes.put(type.getId(), type);
118 * Removes all policy type as supported by this Ric.
120 public synchronized void clearSupportedPolicyTypes() {
121 supportedPolicyTypes.clear();
125 * Checks if a type is supported by this Ric.
127 * @param typeId the identity of the type to check if it is supported.
129 * @return true if the given type is supported by this Ric, false otherwise.
131 public synchronized boolean isSupportingType(String typeId) {
132 return supportedPolicyTypes.containsKey(typeId);
136 public synchronized String toString() {
137 return Ric.class.getSimpleName() + ": " + "name: " + id() + ", state: " + state + ", baseUrl: "
138 + ricConfig.baseUrl() + ", managedNodes: " + ricConfig.managedElementIds();
142 * Represents the states possible for a Ric.
144 public enum RicState {
146 * The Policy Management Service's view of the Near-RT RIC may be inconsistent.
150 * The normal state. Policies can be configured.
154 * The Policy Management Service is synchronizing the view of the Near-RT RIC.
159 * A consistency check between the Policy Management Service and the Near-RT RIC