X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=policy-agent%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fpolicyagent%2Fclients%2FA1ClientFactory.java;fp=policy-agent%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fpolicyagent%2Fclients%2FA1ClientFactory.java;h=636a69f6e07fca32c5776e652cd8ed66855eb0fd;hb=889b38fd05bc9143647827742e3a8e0f10783bc8;hp=1fa66cbb91c76e2eb9b5fbdd6008f0786a51c805;hpb=039eef34aefbd76c2c73baeccdaa5cbe3c745fc2;p=nonrtric.git diff --git a/policy-agent/src/main/java/org/oransc/policyagent/clients/A1ClientFactory.java b/policy-agent/src/main/java/org/oransc/policyagent/clients/A1ClientFactory.java index 1fa66cbb..636a69f6 100644 --- a/policy-agent/src/main/java/org/oransc/policyagent/clients/A1ClientFactory.java +++ b/policy-agent/src/main/java/org/oransc/policyagent/clients/A1ClientFactory.java @@ -29,7 +29,8 @@ import org.springframework.beans.factory.annotation.Autowired; import reactor.core.publisher.Mono; /** - * Factory for A1 clients that supports four different protocol versions of the A1 api. + * Factory for A1 clients that supports four different protocol versions of the + * A1 api. */ public class A1ClientFactory { @@ -46,16 +47,17 @@ public class A1ClientFactory { * Creates an A1 client with the correct A1 protocol for the provided Ric. * *

- * It detects the protocol version by trial and error, since there is no getVersion method specified in the A1 - * api yet. + * It detects the protocol version by trial and error, since there is no + * getVersion method specified in the A1 api yet. * *

- * As a side effect it also sets the protocol version in the provided Ric. This means that after the first - * successful creation it won't have to try which protocol to use, but can create the client directly. + * As a side effect it also sets the protocol version in the provided Ric. This + * means that after the first successful creation it won't have to try which + * protocol to use, but can create the client directly. * - * @param ric The Ric to get a client for. - * @return a client with the correct protocol, or a ServiceException if none of the protocols are supported by the - * Ric. + * @param ric The RIC to get a client for. + * @return a client with the correct protocol, or a ServiceException if none of + * the protocols are supported by the Ric. */ public Mono createA1Client(Ric ric) { return getProtocolVersion(ric) //