Skip to content

Commit d0fc3a5

Browse files
committed
tx:upgrade for 5.0.0.rc1
1 parent 66f731d commit d0fc3a5

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

tx-manager/src/main/java/com/codingapi/txlcn/manager/support/restapi/AdminController.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ public Token login(@RequestParam("password") String password) throws TxManagerEx
5555
/**
5656
* 获取补偿信息
5757
*
58-
* @param page
59-
* @param limit
60-
* @return
58+
* @param page 页码
59+
* @param limit 记录数
60+
* @return ExceptionList
6161
*/
6262
@GetMapping({"/exceptions/{page}", "/exceptions", "/exceptions/{page}/{limit}"})
6363
public ExceptionList exceptionList(
@@ -69,9 +69,9 @@ public ExceptionList exceptionList(
6969
/**
7070
* 获取某个事务组某个节点具体补偿信息
7171
*
72-
* @param groupId
73-
* @param unitId
74-
* @return
72+
* @param groupId groupId
73+
* @param unitId unitId
74+
* @return transaction info
7575
*/
7676
@GetMapping("/log/transaction-info")
7777
public JSONObject transactionInfo(
@@ -87,9 +87,9 @@ public JSONObject transactionInfo(
8787
/**
8888
* 日志信息
8989
*
90-
* @param page
91-
* @param limit
92-
* @return
90+
* @param page 页码
91+
* @param limit 记录数
92+
* @return TxLogList
9393
*/
9494
@GetMapping({"/logs/{page}", "/logs/{page}/{limit}", "/logs"})
9595
public TxLogList txLogList(
@@ -104,7 +104,7 @@ public TxLogList txLogList(
104104
/**
105105
* 获取TxManager信息
106106
*
107-
* @return
107+
* @return TxManagerInfo
108108
*/
109109
@GetMapping("/tx-manager")
110110
public TxManagerInfo getTxManagerInfo() {

tx-manager/src/main/java/com/codingapi/txlcn/manager/support/restapi/auth/sauth/SAuthConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Description:
2525
* Date: 2018/11/23
2626
*
27-
* @auther ujued
27+
* @author ujued
2828
*/
2929
@Configuration
3030
@ComponentScan

tx-manager/src/main/java/com/codingapi/txlcn/manager/support/restapi/auth/sauth/SAuthHandleException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* Description:
2020
* Date: 2018/11/23
2121
*
22-
* @auther ujued
22+
* @author ujued
2323
*/
2424
public class SAuthHandleException extends Exception {
2525

tx-manager/src/main/java/com/codingapi/txlcn/manager/support/restapi/auth/sauth/SAuthLogic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Description:
2525
* Date: 2018/11/23
2626
*
27-
* @auther ujued
27+
* @author ujued
2828
*/
2929
public interface SAuthLogic {
3030

tx-manager/src/main/java/com/codingapi/txlcn/manager/support/restapi/auth/sauth/token/TokenInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* Description:
3737
* Date: 2018/11/23
3838
*
39-
* @auther ujued
39+
* @author ujued
4040
*/
4141
@Component
4242
public class TokenInterceptor implements HandlerInterceptor {

0 commit comments

Comments
 (0)