Skip to content

Commit 3f7e9fd

Browse files
committed
javadoc
1 parent d0fc3a5 commit 3f7e9fd

16 files changed

+63
-63
lines changed

tx-client/src/main/java/com/codingapi/txlcn/client/core/tcc/control/TCCTransactionCleanService.java tx-client/src/main/java/com/codingapi/txlcn/client/core/tcc/control/TccTransactionCleanService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
*/
3737
@Component
3838
@Slf4j
39-
public class TCCTransactionCleanService implements TransactionCleanService {
39+
public class TccTransactionCleanService implements TransactionCleanService {
4040

4141
@Autowired
4242
private TransactionAttachmentCache transactionAttachmentCache;

tx-manager/src/main/java/com/codingapi/txlcn/manager/config/RedisConfig.java

+3-6
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525

2626
/**
2727
* @author 侯存路
28-
* @date 2018/12/4
29-
* @company codingApi
30-
* @description
3128
*/
3229
@Configuration
3330
public class RedisConfig {
@@ -41,7 +38,7 @@ public class RedisConfig {
4138
/**
4239
* 实例化 RedisTemplate 对象
4340
*
44-
* @return
41+
* @return RedisTemplate
4542
*/
4643
@Bean
4744
public RedisTemplate<String, Object> functionDomainRedisTemplate() {
@@ -53,8 +50,8 @@ public RedisTemplate<String, Object> functionDomainRedisTemplate() {
5350
/**
5451
* 设置数据存入 redis 的序列化方式
5552
*
56-
* @param redisTemplate
57-
* @param factory
53+
* @param redisTemplate redisTemplate
54+
* @param factory factory
5855
*/
5956
private void initDomainRedisTemplate(
6057
RedisTemplate<String, Object> redisTemplate, RedisConnectionFactory factory) {

tx-manager/src/main/java/com/codingapi/txlcn/manager/core/context/DTXTransaction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public interface DTXTransaction {
2626
/**
2727
* 事务组标识
2828
*
29-
* @return
29+
* @return groupId
3030
*/
3131
String groupId();
3232
}

tx-manager/src/main/java/com/codingapi/txlcn/manager/core/context/TransactionManager.java

+9-8
Original file line numberDiff line numberDiff line change
@@ -30,44 +30,45 @@ public interface TransactionManager {
3030
* 开始分布式事务
3131
*
3232
* @param dtxTransaction 分布式事务
33+
* @throws TransactionException TransactionException
3334
*/
3435
void begin(DTXTransaction dtxTransaction) throws TransactionException;
3536

3637
/**
3738
* 分布式事务成员加入
3839
*
39-
* @param dtxTransaction
40-
* @param transactionUnit
41-
* @throws TransactionException
40+
* @param dtxTransaction dtxTransaction
41+
* @param transactionUnit transactionUnit
42+
* @throws TransactionException TransactionException
4243
*/
4344
void join(DTXTransaction dtxTransaction, TransactionUnit transactionUnit) throws TransactionException;
4445

4546
/**
4647
* 提交分布式事务。出错会记录异常记录
4748
*
48-
* @param transaction
49+
* @param transaction transaction
4950
*/
5051
void commit(DTXTransaction transaction);
5152

5253
/**
5354
* 回滚分布式事务。出错会记录异常记录
5455
*
55-
* @param transaction
56+
* @param transaction transaction
5657
*/
5758
void rollback(DTXTransaction transaction);
5859

5960
/**
6061
* 关闭分布式事务。出错会记录异常记录
6162
*
62-
* @param groupTransaction
63+
* @param groupTransaction groupTransaction
6364
*/
6465
void close(DTXTransaction groupTransaction);
6566

6667
/**
6768
* 获取事务状态(补偿机制)。出错返回-1
6869
*
69-
* @param groupTransaction
70-
* @return
70+
* @param groupTransaction groupTransaction
71+
* @return transactionState
7172
*/
7273
int transactionState(DTXTransaction groupTransaction);
7374
}

tx-manager/src/main/java/com/codingapi/txlcn/manager/core/message/MessageCreator.java

+13-12
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@
2626
import java.util.Objects;
2727

2828
/**
29+
* 消息创建器
2930
* @author lorne
30-
* @date 2018/12/2
31-
* @description 消息创建器
3231
*/
3332
public class MessageCreator {
3433

@@ -45,8 +44,8 @@ private static byte[] serialize(Object obj) {
4544
/**
4645
* 通知TxClient连接
4746
*
48-
* @param notifyConnectParams
49-
* @return
47+
* @param notifyConnectParams notifyConnectParams
48+
* @return MessageDto
5049
*/
5150
public static MessageDto newTxManager(NotifyConnectParams notifyConnectParams) {
5251
MessageDto msg = new MessageDto();
@@ -58,8 +57,8 @@ public static MessageDto newTxManager(NotifyConnectParams notifyConnectParams) {
5857
/**
5958
* 提交事务组
6059
*
61-
* @param notifyUnitParams
62-
* @return
60+
* @param notifyUnitParams notifyUnitParams
61+
* @return MessageDto
6362
*/
6463
public static MessageDto notifyUnit(NotifyUnitParams notifyUnitParams) {
6564
MessageDto msg = new MessageDto();
@@ -71,8 +70,9 @@ public static MessageDto notifyUnit(NotifyUnitParams notifyUnitParams) {
7170

7271
/**
7372
* 关闭事务组正常响应
74-
*
75-
* @return
73+
* @param action action
74+
* @param message message
75+
* @return MessageDto
7676
*/
7777
public static MessageDto notifyGroupOkResponse(Object message,String action) {
7878
MessageDto messageDto = new MessageDto();
@@ -84,8 +84,9 @@ public static MessageDto notifyGroupOkResponse(Object message,String action) {
8484

8585
/**
8686
* 关闭事务组失败响应
87-
*
88-
* @return
87+
* @param action action
88+
* @param message message
89+
* @return MessageDto
8990
*/
9091
public static MessageDto notifyGroupFailResponse(Object message,String action) {
9192
MessageDto messageDto = new MessageDto();
@@ -97,8 +98,8 @@ public static MessageDto notifyGroupFailResponse(Object message,String action) {
9798

9899
/**
99100
* 服务器错误
100-
*
101-
* @return
101+
* @param action action
102+
* @return MessageDto
102103
*/
103104
public static MessageDto serverException(String action) {
104105
MessageDto messageDto = new MessageDto();

tx-manager/src/main/java/com/codingapi/txlcn/manager/core/message/RpcExceptionHandler.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ public interface RpcExceptionHandler {
2626
/**
2727
* 通知事务单元业务异常
2828
*
29-
* @param params
30-
* @param e
29+
* @param params params
30+
* @param e e
3131
*/
3232
void handleNotifyUnitBusinessException(Object params, Throwable e);
3333

3434
/**
3535
* 通知事务单元通讯异常
3636
*
37-
* @param params
38-
* @param e
37+
* @param params params
38+
* @param e e
3939
*/
4040
void handleNotifyUnitMessageException(Object params, Throwable e);
4141
}

tx-manager/src/main/java/com/codingapi/txlcn/manager/core/message/RpcExecuteService.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,15 @@
1818
import com.codingapi.txlcn.commons.exception.TxManagerException;
1919

2020
/**
21+
* LCN分布式事务 manager业务处理
2122
* @author lorne
22-
* @date 2018/12/2
23-
* @description LCN分布式事务 manager业务处理
2423
*/
2524
public interface RpcExecuteService {
2625

2726
/**
2827
* 执行业务
29-
*
30-
* @return
28+
* @param transactionCmd transactionCmd
29+
* @return Object
3130
*/
3231
Object execute(TransactionCmd transactionCmd) throws TxManagerException;
3332

tx-manager/src/main/java/com/codingapi/txlcn/manager/core/message/ServerRpcAnswer.java

-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626

2727
/**
2828
* @author lorne
29-
* @date 2018/12/10
30-
* @description
3129
*/
3230
@Service
3331
@Slf4j

tx-manager/src/main/java/com/codingapi/txlcn/manager/core/message/TransactionCmd.java

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222

2323
/**
2424
* @author lorne
25-
* @date 2018/12/2
26-
* @description
2725
*/
2826
@Data
2927
public class TransactionCmd {

tx-manager/src/main/java/com/codingapi/txlcn/manager/db/redis/RedisSetManagerStorage.java

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
* Manager信息改用Set 暂未使用
3333
*
3434
* @author meetzy
35-
* @date 2019-01-14 11:09
3635
*/
3736
@Slf4j
3837
public class RedisSetManagerStorage implements ManagerStorage {

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@
2323
import org.springframework.stereotype.Component;
2424

2525
/**
26+
* BeanName 获取工具类
2627
* @author lorne
27-
* @date 2018/12/2
28-
* @description BeanName 获取工具类
2928
*/
3029
@Component
3130
public class ManagerRpcBeanHelper {

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

+4
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ public ExceptionList exceptionList(
7272
* @param groupId groupId
7373
* @param unitId unitId
7474
* @return transaction info
75+
* @throws TxManagerException TxManagerException
7576
*/
7677
@GetMapping("/log/transaction-info")
7778
public JSONObject transactionInfo(
@@ -89,6 +90,9 @@ public JSONObject transactionInfo(
8990
*
9091
* @param page 页码
9192
* @param limit 记录数
93+
* @param groupId groupId
94+
* @param tag tag
95+
* @param timeOrder timeOrder
9296
* @return TxLogList
9397
*/
9498
@GetMapping({"/logs/{page}", "/logs/{page}/{limit}", "/logs"})

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Description:
2626
* Date: 2018/11/23
2727
*
28-
* @auther ujued
28+
* @author ujued
2929
*/
3030
@Component
3131
public class InterceptorConfigurer implements WebMvcConfigurer {

tx-manager/src/main/java/com/codingapi/txlcn/manager/support/service/AdminService.java

+9-9
Original file line numberDiff line numberDiff line change
@@ -31,34 +31,34 @@ public interface AdminService {
3131
/**
3232
* 登陆
3333
*
34-
* @param password
35-
* @return
34+
* @param password password
35+
* @return token
3636
*/
3737
String login(String password) throws TxManagerException;
3838

3939
/**
4040
* 查询TX 日志
4141
*
42-
* @param page
43-
* @param limit
44-
* @param groupId
45-
* @param tag
42+
* @param page page
43+
* @param limit limit
44+
* @param groupId groupId
45+
* @param tag tag
4646
* @param timeOrder 时间排序1 顺序 2 逆序
47-
* @return
47+
* @return TxLogList
4848
*/
4949
TxLogList txLogList(Integer page, Integer limit, String groupId, String tag, Integer timeOrder);
5050

5151
/**
5252
* 分布式事务统计信息
5353
*
54-
* @return
54+
* @return DTXInfo
5555
*/
5656
DTXInfo dtxInfo();
5757

5858
/**
5959
* 获取TxManager信息
6060
*
61-
* @return
61+
* @return TxManagerInfo
6262
*/
6363
TxManagerInfo getTxManagerInfo();
6464
}

tx-manager/src/main/java/com/codingapi/txlcn/manager/support/service/TxExceptionService.java

+13-9
Original file line numberDiff line numberDiff line change
@@ -31,34 +31,38 @@ public interface TxExceptionService {
3131
/**
3232
* 写补偿记录
3333
*
34-
* @param writeTxExceptionReq
34+
* @param writeTxExceptionReq writeTxExceptionReq
3535
*/
3636
void writeTxException(WriteTxExceptionDTO writeTxExceptionReq);
3737

3838

3939
/**
4040
* 获取事务状态
4141
*
42-
* @param groupId
43-
* @return
42+
* @param groupId groupId
43+
* @return transactionState
4444
*/
4545
int transactionState(String groupId);
4646

4747
/**
4848
* 获取补偿列表
4949
*
50-
* @param page
51-
* @param limit
52-
* @return
50+
* @param page page
51+
* @param limit limit
52+
* @param keyword keyword
53+
* @param registrar registrar
54+
* @return ExceptionList
5355
*/
5456
ExceptionList exceptionList(Integer page, Integer limit, String keyword, int registrar);
5557

5658
/**
5759
* Client 切面信息
5860
*
59-
* @param groupId
60-
* @param unitId
61-
* @return
61+
* @param groupId groupId
62+
* @param unitId unitId
63+
* @return JSONObject
64+
* @throws TxManagerException TxManagerException
65+
* @throws TransactionStateException TransactionStateException
6266
*/
6367
JSONObject getTransactionInfo(String groupId, String unitId) throws TxManagerException, TransactionStateException;
6468
}

tx-manager/src/main/java/com/codingapi/txlcn/manager/support/txex/TxExceptionListener.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public interface TxExceptionListener {
2828
/**
2929
* 实务异常时
3030
*
31-
* @param txException
31+
* @param txException txException
3232
*/
3333
void onException(TxException txException);
3434
}

0 commit comments

Comments
 (0)