X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=PolicyEngineAPI%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fpolicy%2Fapi%2FPolicyEngine.java;h=7bd45983bdad011a0524f70aa2f6441900313632;hb=ce1cf85647ab1ae3c292fd1b1286ea0dbb56223f;hp=bfb4f1e4f7231b87bd16ee8e17675630cd4ead6c;hpb=827a2016429bc377e28d2a414b6bcbdf8b6dc924;p=policy%2Fengine.git diff --git a/PolicyEngineAPI/src/main/java/org/onap/policy/api/PolicyEngine.java b/PolicyEngineAPI/src/main/java/org/onap/policy/api/PolicyEngine.java index bfb4f1e4f..7bd45983b 100644 --- a/PolicyEngineAPI/src/main/java/org/onap/policy/api/PolicyEngine.java +++ b/PolicyEngineAPI/src/main/java/org/onap/policy/api/PolicyEngine.java @@ -121,22 +121,22 @@ public class PolicyEngine{ } /** - * Gets the configuration from the PolicyDecisionPoint(PDP) for the String which represents the onapComponentName + * Gets the configuration from the PolicyDecisionPoint(PDP) for the String which represents the onapName * - * @param onapComponentName the String format of the onapComponentName whose configuration is required. + * @param onapName the String format of the onapName whose configuration is required. * @return Collection of {@link org.onap.policy.api.PolicyConfig} which has the configuration. * @throws PolicyConfigException PolicyConfig Exception * @deprecated use {@link #getConfig(ConfigRequestParameters)} Instead. */ @Deprecated - public Collection getConfig(String onapComponentName) throws PolicyConfigException { - return getConfig(setConfigRequestParameters(null, onapComponentName, null, null, null)); + public Collection getConfig(String onapName) throws PolicyConfigException { + return getConfig(setConfigRequestParameters(null, onapName, null, null, null)); } /** - * Gets the configuration from the PolicyDecisionPoint(PDP) for the String which represents the onapComponentName + * Gets the configuration from the PolicyDecisionPoint(PDP) for the String which represents the onapName * - * @param onapComponentName the String format of the onapComponentName whose configuration is required. + * @param onapName the String format of the onapName whose configuration is required. * @return Collection of {@link org.onap.policy.api.PolicyConfig} which has the configuration. * @param requestID unique request ID which will be passed throughout the ONAP components to correlate logging messages. * A different request ID should be passed for each request. @@ -144,32 +144,32 @@ public class PolicyEngine{ * @deprecated use {@link #getConfig(ConfigRequestParameters)} Instead. */ @Deprecated - public Collection getConfig(String onapComponentName, UUID requestID) throws PolicyConfigException { - return getConfig(setConfigRequestParameters(null, onapComponentName, null, null, requestID)); + public Collection getConfig(String onapName, UUID requestID) throws PolicyConfigException { + return getConfig(setConfigRequestParameters(null, onapName, null, null, requestID)); } /** - * Requests the configuration of the String which represents the onapComponentName and String + * Requests the configuration of the String which represents the onapName and String * which represents the configName and returns the configuration if different Configurations exist for the - * particular onapComponentName. + * particular onapName. * - * @param onapComponentName the String format of the onapComponentName whose configuration is required. + * @param onapName the String format of the onapName whose configuration is required. * @param configName the String format of the configurationName whose configuration is required. * @return Collection of {@link org.onap.policy.api.PolicyConfig} which has the configuration. * @throws PolicyConfigException PolicyConfig Exception * @deprecated use {@link #getConfig(ConfigRequestParameters)} Instead. */ @Deprecated - public Collection getConfig(String onapComponentName, String configName) throws PolicyConfigException { - return getConfig(setConfigRequestParameters(null, onapComponentName, configName, null, null)); + public Collection getConfig(String onapName, String configName) throws PolicyConfigException { + return getConfig(setConfigRequestParameters(null, onapName, configName, null, null)); } /** - * Requests the configuration of the String which represents the onapComponentName and String + * Requests the configuration of the String which represents the onapName and String * which represents the configName and returns the configuration if different Configurations exist for the - * particular onapComponentName. + * particular onapName. * - * @param onapComponentName the String format of the onapComponentName whose configuration is required. + * @param onapName the String format of the onapName whose configuration is required. * @param configName the String format of the configurationName whose configuration is required. * @param requestID unique request ID which will be passed throughout the ONAP components to correlate logging messages. * A different request ID should be passed for each request. @@ -178,16 +178,16 @@ public class PolicyEngine{ * @deprecated use {@link #getConfig(ConfigRequestParameters)} Instead. */ @Deprecated - public Collection getConfig(String onapComponentName, String configName, UUID requestID) throws PolicyConfigException { - return getConfig(setConfigRequestParameters(null, onapComponentName, configName, null, requestID)); + public Collection getConfig(String onapName, String configName, UUID requestID) throws PolicyConfigException { + return getConfig(setConfigRequestParameters(null, onapName, configName, null, requestID)); } /** - * Requests the configuration of the String which represents the onapComponentName, String + * Requests the configuration of the String which represents the onapName, String * which represents the configName and Map of String,String which has the configAttribute and returns the specific * configuration related to the configAttributes mentioned. * - * @param onapComponentName the String format of the onapComponentName whose configuration is required. + * @param onapName the String format of the onapName whose configuration is required. * @param configName the String format of the configurationName whose configuration is required. * @param configAttributes the Map of String,String format of the configuration attributes which are required. * @return Collection of {@link org.onap.policy.api.PolicyConfig} which has the configuration. @@ -195,16 +195,16 @@ public class PolicyEngine{ * @deprecated use {@link #getConfig(ConfigRequestParameters)} Instead. */ @Deprecated - public Collection getConfig(String onapComponentName, String configName, Map configAttributes) throws PolicyConfigException{ - return getConfig(setConfigRequestParameters(null, onapComponentName, configName, configAttributes, null)); + public Collection getConfig(String onapName, String configName, Map configAttributes) throws PolicyConfigException{ + return getConfig(setConfigRequestParameters(null, onapName, configName, configAttributes, null)); } /** - * Requests the configuration of the String which represents the onapComponentName, String + * Requests the configuration of the String which represents the onapName, String * which represents the configName and Map of String,String which has the configAttribute and returns the specific * configuration related to the configAttributes mentioned. * - * @param onapComponentName the String format of the onapComponentName whose configuration is required. + * @param onapName the String format of the onapName whose configuration is required. * @param configName the String format of the configurationName whose configuration is required. * @param configAttributes the Map of String,String format of the configuration attributes which are required. * @param requestID unique request ID which will be passed throughout the ONAP components to correlate logging messages. @@ -214,8 +214,8 @@ public class PolicyEngine{ * @deprecated use {@link #getConfig(ConfigRequestParameters)} Instead. */ @Deprecated - public Collection getConfig(String onapComponentName, String configName, Map configAttributes, UUID requestID) throws PolicyConfigException{ - return getConfig(setConfigRequestParameters(null, onapComponentName, configName, configAttributes, requestID)); + public Collection getConfig(String onapName, String configName, Map configAttributes, UUID requestID) throws PolicyConfigException{ + return getConfig(setConfigRequestParameters(null, onapName, configName, configAttributes, requestID)); } /** @@ -285,21 +285,21 @@ public class PolicyEngine{ /** * Sends the decision Attributes specified to the PEP and returns back the PolicyDecision. * - * @param onapComponentName the String format of the onapComponentName whose Decision is required. + * @param onapName the String format of the onapName whose Decision is required. * @param decisionAttributes the Map of String,String format of the decisionAttributes that must contain the ID and values. * @return {@link org.onap.policy.api.DecisionResponse} which has the Decision. * @throws PolicyDecisionException PolicyDecision Exception * @deprecated use {@link #getDecision(DecisionRequestParameters)} Instead. */ @Deprecated - public DecisionResponse getDecision(String onapComponentName, Map decisionAttributes) throws PolicyDecisionException { - return stdPolicyEngine.getDecision(onapComponentName, decisionAttributes, null); + public DecisionResponse getDecision(String onapName, Map decisionAttributes) throws PolicyDecisionException { + return stdPolicyEngine.getDecision(onapName, decisionAttributes, null); } /** * Sends the decision Attributes specified to the PEP and returns back the PolicyDecision. * - * @param onapComponentName the String format of the onapComponentName whose Decision is required. + * @param onapName the String format of the onapName whose Decision is required. * @param decisionAttributes the Map of String,String format of the decisionAttributes that must contain the ID and values. * @param requestID unique request ID which will be passed throughout the ONAP components to correlate logging messages. * A different request ID should be passed for each request. @@ -308,8 +308,8 @@ public class PolicyEngine{ * @deprecated use {@link #getDecision(DecisionRequestParameters)} Instead. */ @Deprecated - public DecisionResponse getDecision(String onapComponentName, Map decisionAttributes, UUID requestID) throws PolicyDecisionException { - return stdPolicyEngine.getDecision(onapComponentName, decisionAttributes, requestID); + public DecisionResponse getDecision(String onapName, Map decisionAttributes, UUID requestID) throws PolicyDecisionException { + return stdPolicyEngine.getDecision(onapName, decisionAttributes, requestID); } /** @@ -590,10 +590,10 @@ public class PolicyEngine{ } // Internal Setter Method to help build configRequestParameters. - private ConfigRequestParameters setConfigRequestParameters(String policyName, String onapComponentName, String configName, Map configAttributes, UUID requestID){ + private ConfigRequestParameters setConfigRequestParameters(String policyName, String onapName, String configName, Map configAttributes, UUID requestID){ ConfigRequestParameters configRequestParameters = new ConfigRequestParameters(); configRequestParameters.setPolicyName(policyName); - configRequestParameters.setOnapName(onapComponentName); + configRequestParameters.setOnapName(onapName); configRequestParameters.setConfigName(configName); configRequestParameters.setConfigAttributes(configAttributes); configRequestParameters.setRequestID(requestID);