X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=policy-agent%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fpolicyagent%2Frepository%2FRic.java;h=18a2dc7e2830ce140fd5309f7bd4d1d61fcd8c02;hb=35e7ea7bb7a6e2890542f3535aa09b11b2f079a1;hp=68b07aa0864408f097ebf2d87b797a0b7b8daa0f;hpb=cd9e9862fa9a5898f3595b397686861749f72953;p=nonrtric.git diff --git a/policy-agent/src/main/java/org/oransc/policyagent/repository/Ric.java b/policy-agent/src/main/java/org/oransc/policyagent/repository/Ric.java index 68b07aa0..18a2dc7e 100644 --- a/policy-agent/src/main/java/org/oransc/policyagent/repository/Ric.java +++ b/policy-agent/src/main/java/org/oransc/policyagent/repository/Ric.java @@ -144,9 +144,9 @@ public class Ric { /** * Checks if a type is supported by this Ric. * - * @param type the type to check if it is supported. + * @param typeName the name of the type to check if it is supported. * - * @return true if the given type issupported by this Ric, false otherwise. + * @return true if the given type is supported by this Ric, false otherwise. */ public boolean isSupportingType(String typeName) { return supportedPolicyTypes.containsKey(typeName); @@ -163,14 +163,6 @@ public class Ric { /** * The Ric is working fine. */ - ACTIVE, - /** - * Something is wrong with the Ric. - */ - FAULTY, - /** - * The node is unreachable at the moment. - */ - UNREACHABLE + ACTIVE } }