From 0f2474386ca020a98361a8cac97fd1f7feb7b47a Mon Sep 17 00:00:00 2001 From: Redkale <22250530@qq.com> Date: Sat, 21 Jul 2018 10:58:17 +0800 Subject: [PATCH] --- .../boot/watch/FilterWatchService.java | 30 +++++++++++++++++++ .../boot/watch/TransportWatchService.java | 20 +++++++++++++ 2 files changed, 50 insertions(+) diff --git a/src/org/redkale/boot/watch/FilterWatchService.java b/src/org/redkale/boot/watch/FilterWatchService.java index 054292a80..b34585372 100644 --- a/src/org/redkale/boot/watch/FilterWatchService.java +++ b/src/org/redkale/boot/watch/FilterWatchService.java @@ -47,4 +47,34 @@ public class FilterWatchService extends AbstractWatchService { } return RetResult.success(); } + + @RestMapping(name = "test1", auth = false, comment = "预留") + public RetResult test1() { + return RetResult.success(); + } + + @RestMapping(name = "test2", auth = false, comment = "预留") + public RetResult test2() { + return RetResult.success(); + } + + @RestMapping(name = "test3", auth = false, comment = "预留") + public RetResult test3() { + return RetResult.success(); + } + + @RestMapping(name = "test4", auth = false, comment = "预留") + public RetResult test4() { + return RetResult.success(); + } + + @RestMapping(name = "test5", auth = false, comment = "预留") + public RetResult test5() { + return RetResult.success(); + } + + @RestMapping(name = "test6", auth = false, comment = "预留") + public RetResult test6() { + return RetResult.success(); + } } diff --git a/src/org/redkale/boot/watch/TransportWatchService.java b/src/org/redkale/boot/watch/TransportWatchService.java index c2e1111b9..ffc61e157 100644 --- a/src/org/redkale/boot/watch/TransportWatchService.java +++ b/src/org/redkale/boot/watch/TransportWatchService.java @@ -135,4 +135,24 @@ public class TransportWatchService extends AbstractWatchService { } return RetResult.success(); } + + @RestMapping(name = "test1", auth = false, comment = "预留") + public RetResult test1() { + return RetResult.success(); + } + + @RestMapping(name = "test2", auth = false, comment = "预留") + public RetResult test2() { + return RetResult.success(); + } + + @RestMapping(name = "test3", auth = false, comment = "预留") + public RetResult test3() { + return RetResult.success(); + } + + @RestMapping(name = "test4", auth = false, comment = "预留") + public RetResult test4() { + return RetResult.success(); + } }