Skip to content

Commit dbc61eb

Browse files
author
KenChoi1992
committed
modify link description
1 parent eb83685 commit dbc61eb

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

src/main/java/cn/jpush/api/JPushClient.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public JPushClient(String masterSecret, String appKey, HttpProxy proxy, ClientCo
7676
}
7777

7878
/**
79-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
79+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
8080
* @param masterSecret API access secret of the appKey.
8181
* @param appKey The KEY of one application on JPush.
8282
* @param maxRetryTimes The max retry times.
@@ -90,7 +90,7 @@ public JPushClient(String masterSecret, String appKey, int maxRetryTimes) {
9090
}
9191

9292
/**
93-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
93+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
9494
* @param masterSecret API access secret of the appKey.
9595
* @param appKey The KEY of one application on JPush.
9696
* @param maxRetryTimes The max retry times.
@@ -108,7 +108,7 @@ public JPushClient(String masterSecret, String appKey, int maxRetryTimes, HttpPr
108108
* Create a JPush Client by custom Client configuration.
109109
*
110110
* If you are using JPush privacy cloud, maybe this constructor is what you needed.
111-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
111+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
112112
*
113113
* @param masterSecret API access secret of the appKey.
114114
* @param appKey The KEY of one application on JPush.
@@ -132,7 +132,7 @@ public JPushClient(String masterSecret, String appKey, int maxRetryTimes, HttpPr
132132
*
133133
* If you are using JPush privacy cloud, and you want different settings from default globally,
134134
* maybe this constructor is what you needed.
135-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig#setGlobalPushSetting} instead of this constructor.
135+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig#setGlobalPushSetting} instead of this constructor.
136136
*
137137
* @param masterSecret API access secret of the appKey.
138138
* @param appKey The KEY of one application on JPush.
@@ -158,7 +158,7 @@ public JPushClient(String masterSecret, String appKey, int maxRetryTimes, HttpPr
158158
* Create a JPush Client with global settings.
159159
*
160160
* If you want different settings from default globally, this constructor is what you needed.
161-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig#setGlobalPushSetting} instead of this constructor.
161+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig#setGlobalPushSetting} instead of this constructor.
162162
*
163163
* @param masterSecret API access secret of the appKey.
164164
* @param appKey The KEY of one application on JPush.

src/main/java/cn/jpush/api/device/DeviceClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public DeviceClient(String masterSecret, String appKey) {
3636
}
3737

3838
/**
39-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
39+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
4040
* @param masterSecret API access secret of the appKey.
4141
* @param appKey The KEY of one application on JPush.
4242
* @param maxRetryTimes The max retry times.
@@ -48,7 +48,7 @@ public DeviceClient(String masterSecret, String appKey, int maxRetryTimes) {
4848
}
4949

5050
/**
51-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
51+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
5252
* @param masterSecret API access secret of the appKey.
5353
* @param appKey The KEY of one application on JPush.
5454
* @param maxRetryTimes The max retry times.

src/main/java/cn/jpush/api/push/PushClient.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public PushClient(String masterSecret, String appKey) {
5151
}
5252

5353
/**
54-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig} instead of this constructor.
54+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig} instead of this constructor.
5555
* @param masterSecret API access secret of the appKey.
5656
* @param appKey The KEY of one application on JPush.
5757
* @param maxRetryTimes The max retry times.
@@ -63,7 +63,7 @@ public PushClient(String masterSecret, String appKey, int maxRetryTimes) {
6363

6464
/**
6565
* Create a Push Client with max retry times.
66-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig} instead of this constructor.
66+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig} instead of this constructor.
6767
*
6868
* @param masterSecret API access secret of the appKey.
6969
* @param appKey The KEY of one application on JPush.
@@ -107,7 +107,7 @@ public PushClient(String masterSecret, String appKey, HttpProxy proxy, ClientCon
107107
* Create a Push Client with global settings.
108108
*
109109
* If you want different settings from default globally, this constructor is what you needed.
110-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig} instead of this constructor.
110+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig} instead of this constructor.
111111
*
112112
* @param masterSecret API access secret of the appKey.
113113
* @param appKey The KEY of one application on JPush.
@@ -126,7 +126,7 @@ public PushClient(String masterSecret, String appKey, boolean apnsProduction, lo
126126
}
127127

128128
/**
129-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig#setGlobalPushSetting} instead of this method.
129+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig#setGlobalPushSetting} instead of this method.
130130
*
131131
* @param apnsProduction Global APNs environment setting. It will override PushPayload Options.
132132
* @param timeToLive Global time_to_live setting. It will override PushPayload Options.

src/main/java/cn/jpush/api/report/ReportClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public ReportClient(String masterSecret, String appKey) {
2828
}
2929

3030
/**
31-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
31+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
3232
* @param masterSecret API access secret of the appKey.
3333
* @param appKey The KEY of one application on JPush.
3434
* @param maxRetryTimes max retry times.
@@ -40,7 +40,7 @@ public ReportClient(String masterSecret, String appKey, int maxRetryTimes) {
4040
}
4141

4242
/**
43-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
43+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
4444
* @param masterSecret API access secret of the appKey.
4545
* @param appKey The KEY of one application on JPush.
4646
* @param maxRetryTimes max retry times

src/main/java/cn/jpush/api/schedule/ScheduleClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public ScheduleClient(String masterSecret, String appkey) {
3333
}
3434

3535
/**
36-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
36+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
3737
* @param masterSecret API access secret of the appKey.
3838
* @param appKey The KEY of one application on JPush.
3939
* @param maxRetryTimes The mas retry times.
@@ -45,7 +45,7 @@ public ScheduleClient(String masterSecret, String appKey, int maxRetryTimes) {
4545
}
4646

4747
/**
48-
* This will be removed in the future. Please use ClientConfig{@link cn.jpush.api.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
48+
* This will be removed in the future. Please use ClientConfig{jiguang-common cn.jiguang.common.ClientConfig#setMaxRetryTimes} instead of this constructor.
4949
* @param masterSecret API access secret of the appKey.
5050
* @param appKey The KEY of one application on JPush.
5151
* @param maxRetryTimes The mas retry times.

0 commit comments

Comments
 (0)