change calss name 42/129942/1
authorcmrizhangzhen <781953240@qq.com>
Fri, 15 Jul 2022 07:32:26 +0000 (15:32 +0800)
committercmrizhangzhen <781953240@qq.com>
Fri, 15 Jul 2022 07:32:44 +0000 (15:32 +0800)
Issue-ID: USECASEUI-696
Signed-off-by: cmrizhangzhen <781953240@qq.com>
Change-Id: I6030b5a66468956011279d75a8ec32078beaaa63

12 files changed:
intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/CLLBusinessService/CLLBusinessIntentManagementFunction.java
intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/CLLBusinessService/intentModuleImpl/ActuationModuleImpl.java
intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/CLLBusinessService/intentModuleImpl/DecisoinModuleImpl.java
intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/intentModule/ActuationModule.java
intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/intentModule/DecisionModule.java
intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/intentProcessService/IntentDefinitionService.java
intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/intentProcessService/IntentDetectionService.java
intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/intentProcessService/IntentDistributionService.java
intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/intentProcessService/IntentInvestigationService.java
intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/intentProcessService/IntentManagementFunction.java [moved from intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/intentProcessService/IntentAnalysisFunction.java with 96% similarity]
intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/intentProcessService/IntentOperationService.java
intentanalysis/src/main/java/org/onap/usecaseui/intentanalysis/intentProcessService/IntentProcessService.java

index d15d63f..2cf0de1 100644 (file)
@@ -23,10 +23,10 @@ import org.onap.usecaseui.intentanalysis.CLLBusinessService.intentModuleImpl.Kno
 import org.onap.usecaseui.intentanalysis.intentModule.ActuationModule;
 import org.onap.usecaseui.intentanalysis.intentModule.DecisionModule;
 import org.onap.usecaseui.intentanalysis.intentModule.KnowledgeModule;
-import org.onap.usecaseui.intentanalysis.intentProcessService.IntentAnalysisFunction;
+import org.onap.usecaseui.intentanalysis.intentProcessService.IntentManagementFunction;
 
 @Data
-public class CLLBusinessIntentManagementFunction extends IntentAnalysisFunction {
+public class CLLBusinessIntentManagementFunction extends IntentManagementFunction {
     private ActuationModule actuationModule  = new ActuationModuleImpl();
     private DecisionModule decisoinModule = new DecisoinModuleImpl();
     private KnowledgeModule knowledgeModule = new KnownledgeModuleImpl();
index a644423..1cbdd77 100644 (file)
@@ -17,7 +17,7 @@ package org.onap.usecaseui.intentanalysis.CLLBusinessService.intentModuleImpl;
 
 
 import org.onap.usecaseui.intentanalysis.intentModule.ActuationModule;
-import org.onap.usecaseui.intentanalysis.intentProcessService.IntentAnalysisFunction;
+import org.onap.usecaseui.intentanalysis.intentProcessService.IntentManagementFunction;
 import org.onap.usecaseui.intentanalysis.intentProcessService.IntentProcessService;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
@@ -28,7 +28,7 @@ public class ActuationModuleImpl implements ActuationModule {
     IntentProcessService processService;
 
     @Override
-    public void sendToIntentHandler(IntentAnalysisFunction intentHandler) {
+    public void sendToIntentHandler(IntentManagementFunction intentHandler) {
         processService.setIntentRole(intentHandler, null);
         processService.intentProcess();
     }
index 108731a..495bf70 100644 (file)
@@ -17,7 +17,7 @@ package org.onap.usecaseui.intentanalysis.CLLBusinessService.intentModuleImpl;
 
 
 import org.onap.usecaseui.intentanalysis.intentModule.DecisionModule;
-import org.onap.usecaseui.intentanalysis.intentProcessService.IntentAnalysisFunction;
+import org.onap.usecaseui.intentanalysis.intentProcessService.IntentManagementFunction;
 import org.springframework.stereotype.Service;
 
 @Service
@@ -26,7 +26,7 @@ public class DecisoinModuleImpl implements DecisionModule {
     public void determineUltimateGoal() {}
 
     @Override
-    public IntentAnalysisFunction exploreIntentHandlers() {
+    public IntentManagementFunction exploreIntentHandlers() {
 
         return null;
 
index c747738..5a3c1f6 100644 (file)
  */
 package org.onap.usecaseui.intentanalysis.intentModule;
 
-import org.onap.usecaseui.intentanalysis.intentProcessService.IntentAnalysisFunction;
+import org.onap.usecaseui.intentanalysis.intentProcessService.IntentManagementFunction;
 
 public interface ActuationModule {
     //actuationModel & knownledgeModel interact
-    void sendToIntentHandler(IntentAnalysisFunction IntentHandler);
+    void sendToIntentHandler(IntentManagementFunction IntentHandler);
     void sendToNonIntentHandler();//直接操作
     void interactWithIntentHandle();
     //Save intent information to the intent instance database
index 9413499..edbae69 100644 (file)
 package org.onap.usecaseui.intentanalysis.intentModule;
 
 
-import org.onap.usecaseui.intentanalysis.intentProcessService.IntentAnalysisFunction;
+import org.onap.usecaseui.intentanalysis.intentProcessService.IntentManagementFunction;
 
 public interface DecisionModule {
     void determineUltimateGoal();//
-    IntentAnalysisFunction exploreIntentHandlers();
+    IntentManagementFunction exploreIntentHandlers();
     void intentDefinition();
     void decideSuitableAction();
 
index aa79dc3..cd6af28 100644 (file)
@@ -23,10 +23,10 @@ import org.springframework.stereotype.Service;
 @Service
 public class IntentDefinitionService {
 
-    private IntentAnalysisFunction intentHandler;
-    private IntentAnalysisFunction intentOwner;
+    private IntentManagementFunction intentHandler;
+    private IntentManagementFunction intentOwner;
 
-    public void setIntentRole(IntentAnalysisFunction intentOwner, IntentAnalysisFunction intentHandler) {
+    public void setIntentRole(IntentManagementFunction intentOwner, IntentManagementFunction intentHandler) {
         if (intentOwner != null) {
             this.intentOwner = intentOwner;
         }
index cb536ed..ada67ce 100644 (file)
@@ -21,10 +21,10 @@ import org.springframework.stereotype.Service;
 @Service
 public class IntentDetectionService {
 
-    private IntentAnalysisFunction intentHandler;
-    private IntentAnalysisFunction intentOwner;
+    private IntentManagementFunction intentHandler;
+    private IntentManagementFunction intentOwner;
 
-    public void setIntentRole(IntentAnalysisFunction intentOwner, IntentAnalysisFunction intentHandler){
+    public void setIntentRole(IntentManagementFunction intentOwner, IntentManagementFunction intentHandler){
         if (intentOwner!= null){
             this.intentOwner = intentOwner;
         }
index befd8a4..535214f 100644 (file)
@@ -23,10 +23,10 @@ import org.springframework.stereotype.Service;
 @Service
 public class IntentDistributionService {
     @Autowired
-    private IntentAnalysisFunction intentHandler;
-    private IntentAnalysisFunction intentOwner;
+    private IntentManagementFunction intentHandler;
+    private IntentManagementFunction intentOwner;
 
-    public void setIntentRole(IntentAnalysisFunction intentOwner, IntentAnalysisFunction intentHandler){
+    public void setIntentRole(IntentManagementFunction intentOwner, IntentManagementFunction intentHandler){
         if (intentOwner!= null){
             this.intentOwner = intentOwner;
         }
index 8de3e9c..9229804 100644 (file)
@@ -20,10 +20,10 @@ import org.springframework.stereotype.Service;
 
 @Service
 public class IntentInvestigationService {
-    private IntentAnalysisFunction intentHandler;
-    private IntentAnalysisFunction intentOwner;
+    private IntentManagementFunction intentHandler;
+    private IntentManagementFunction intentOwner;
 
-    public void setIntentRole(IntentAnalysisFunction intentOwner, IntentAnalysisFunction intentHandler){
+    public void setIntentRole(IntentManagementFunction intentOwner, IntentManagementFunction intentHandler){
         if (intentOwner!= null){
             this.intentOwner = intentOwner;
         }
@@ -22,7 +22,7 @@ import org.onap.usecaseui.intentanalysis.intentModule.DecisionModule;
 import org.onap.usecaseui.intentanalysis.intentModule.KnowledgeModule;
 
 @Data
-public class IntentAnalysisFunction {
+public class IntentManagementFunction {
     private ActuationModule actuationModule;
     private DecisionModule decisionModule;
     private KnowledgeModule knowledgeModule;
index 274f474..61fbc86 100644 (file)
@@ -23,10 +23,10 @@ import org.springframework.stereotype.Service;
 @Service
 public class IntentOperationService {
 
-    private IntentAnalysisFunction intentHandler;
-    private IntentAnalysisFunction intentOwner;
+    private IntentManagementFunction intentHandler;
+    private IntentManagementFunction intentOwner;
 
-    public void setIntentRole(IntentAnalysisFunction intentOwner, IntentAnalysisFunction intentHandler){
+    public void setIntentRole(IntentManagementFunction intentOwner, IntentManagementFunction intentHandler){
         if (intentOwner!= null){
             this.intentOwner = intentOwner;
         }
index 7f0e0a8..4a1a090 100644 (file)
@@ -31,11 +31,11 @@ public class IntentProcessService {
     @Autowired
     IntentOperationService intentOperationService;
 
-    private IntentAnalysisFunction intentOwner;
-    private IntentAnalysisFunction intentHandler;
+    private IntentManagementFunction intentOwner;
+    private IntentManagementFunction intentHandler;
 
 
-    public void setIntentRole(IntentAnalysisFunction intentOwner, IntentAnalysisFunction intentHandler){
+    public void setIntentRole(IntentManagementFunction intentOwner, IntentManagementFunction intentHandler){
         if (intentOwner!= null){
             this.intentOwner = intentOwner;
         }