Skip to content

Commit 795e87f

Browse files
authored
Merge pull request #32 from horseLk/main
upgrade & fix bug
2 parents 1d9c20f + a0cbfaf commit 795e87f

File tree

43 files changed

+320
-132
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+320
-132
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 yedf
3+
Copyright (c) 2022 dtm-labs
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ dtm.ipport=127.0.0.1:36789
130130
### 完整示例
131131

132132
#### dtmcli-java使用示例
133-
[dtmcli-java-sample](https://github.com/dtm-labs/dtmcli-java-sample)
133+
[dtmcli-java-sample](https://github.com/dtm-labs/dtmcli-java-sample)
134134
[dtmcli-java-sample-use-configuration](https://github.com/horseLk/dtmcli-java-sample-with-conf)
135135
#### dtmcli-springcloud使用示例
136136
[dtmcli-java-spring-sample](https://github.com/dtm-labs/dtmcli-java-spring-sample)

dtmcli-common/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<artifactId>dtmcli-java-parent</artifactId>
77
<groupId>io.github.dtm-labs</groupId>
8-
<version>2.1.0</version>
8+
<version>2.1.4</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>dtmcli-common</artifactId>
13-
<version>2.1.0</version>
13+
<version>2.1.4</version>
1414
<packaging>jar</packaging>
1515
<name>dtmcli-common</name>
1616

dtmcli-common/src/main/java/pub/dtm/client/constant/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* MIT License
33
*
4-
* Copyright (c) 2022 yedf
4+
* Copyright (c) 2022 dtm-labs
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

dtmcli-common/src/main/java/pub/dtm/client/constant/ParamFieldConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* MIT License
33
*
4-
* Copyright (c) 2022 yedf
4+
* Copyright (c) 2022 dtm-labs
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

dtmcli-common/src/main/java/pub/dtm/client/enums/TransTypeEnum.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* MIT License
33
*
4-
* Copyright (c) 2022 yedf
4+
* Copyright (c) 2022 dtm-labs
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

dtmcli-common/src/main/java/pub/dtm/client/exception/FailureException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* MIT License
33
*
4-
* Copyright (c) 2022 yedf
4+
* Copyright (c) 2022 dtm-labs
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

dtmcli-common/src/main/java/pub/dtm/client/interfaces/dtm/DtmConsumer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* MIT License
33
*
4-
* Copyright (c) 2022 yedf
4+
* Copyright (c) 2022 dtm-labs
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* MIT License
33
*
4-
* Copyright (c) 2022 yedf
4+
* Copyright (c) 2022 dtm-labs
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
2222
* SOFTWARE.
2323
*/
2424

25-
package pub.dtm.client.interfaces.communication;
25+
package pub.dtm.client.interfaces.stub;
2626

2727
import feign.Response;
2828
import pub.dtm.client.model.param.OperatorParam;
@@ -32,11 +32,11 @@
3232
import java.util.Map;
3333

3434
/**
35-
* A feign client interface for dtm svr, we designed different implements for different client.
35+
* A stub interface for dtm svr, different client has different implements.
3636
*
3737
* @author horseLk
3838
*/
39-
public interface IDtmCommunicationClient {
39+
public interface IDtmServerStub {
4040
/**
4141
* get stubType
4242
* @return type
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* MIT License
33
*
4-
* Copyright (c) 2022 yedf
4+
* Copyright (c) 2022 dtm-labs
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
2222
* SOFTWARE.
2323
*/
2424

25-
package pub.dtm.client.interfaces.communication;
25+
package pub.dtm.client.interfaces.stub;
2626

2727
import pub.dtm.client.model.feign.ServiceMessage;
2828

0 commit comments

Comments
 (0)