You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eventmesh.apache.org by mi...@apache.org on 2022/11/26 13:13:52 UTC

[incubator-eventmesh] branch master updated: remote interface public

This is an automated email from the ASF dual-hosted git repository.

mikexue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-eventmesh.git


The following commit(s) were added to refs/heads/master by this push:
     new dcb2837b remote interface public
     new 8ca74a16 Merge pull request #2258 from weihubeats/remove_public
dcb2837b is described below

commit dcb2837b4c7ed48f0b91ce125bd7b9fa507c5975
Author: weihu <we...@163.com>
AuthorDate: Sat Nov 26 18:01:38 2022 +0800

    remote interface public
---
 .../apache/eventmesh/webhook/api/WebHookConfigOperation.java | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/eventmesh-webhook/eventmesh-webhook-api/src/main/java/org/apache/eventmesh/webhook/api/WebHookConfigOperation.java b/eventmesh-webhook/eventmesh-webhook-api/src/main/java/org/apache/eventmesh/webhook/api/WebHookConfigOperation.java
index 1673c6e2..636842f2 100644
--- a/eventmesh-webhook/eventmesh-webhook-api/src/main/java/org/apache/eventmesh/webhook/api/WebHookConfigOperation.java
+++ b/eventmesh-webhook/eventmesh-webhook-api/src/main/java/org/apache/eventmesh/webhook/api/WebHookConfigOperation.java
@@ -24,14 +24,14 @@ import java.util.List;
  */
 public interface WebHookConfigOperation {
 
-    public Integer insertWebHookConfig(WebHookConfig webHookConfig);
+    Integer insertWebHookConfig(WebHookConfig webHookConfig);
 
-    public Integer updateWebHookConfig(WebHookConfig webHookConfig);
+    Integer updateWebHookConfig(WebHookConfig webHookConfig);
 
-    public Integer deleteWebHookConfig(WebHookConfig webHookConfig);
+    Integer deleteWebHookConfig(WebHookConfig webHookConfig);
 
-    public WebHookConfig queryWebHookConfigById(WebHookConfig webHookConfig);
+    WebHookConfig queryWebHookConfigById(WebHookConfig webHookConfig);
 
-    public List<WebHookConfig> queryWebHookConfigByManufacturer(WebHookConfig webHookConfig, Integer pageNum,
-                                                                Integer pageSize);
+    List<WebHookConfig> queryWebHookConfigByManufacturer(WebHookConfig webHookConfig, Integer pageNum,
+            Integer pageSize);
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@eventmesh.apache.org
For additional commands, e-mail: commits-help@eventmesh.apache.org