Skip to content

Commit 106edbb

Browse files
authored
Release 25.7
1 parent 16d65b2 commit 106edbb

File tree

10 files changed

+45
-29
lines changed

10 files changed

+45
-29
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Maven metadata URL](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Freleases.aspose.cloud%2Fjava%2Frepo%2Fcom%2Faspose%2Faspose-barcode-cloud%2Fmaven-metadata.xml)](https://releases.aspose.cloud/java/repo/com/aspose/aspose-barcode-cloud/)
66

77
- API version: 4.0
8-
- SDK version: 25.6.0
8+
- SDK version: 25.7.0
99

1010
## SDK and API Version Compatibility:
1111

@@ -73,7 +73,7 @@ Add this dependency to your project's POM:
7373
<dependency>
7474
<groupId>com.aspose</groupId>
7575
<artifactId>aspose-barcode-cloud</artifactId>
76-
<version>25.6.0</version>
76+
<version>25.7.0</version>
7777
<scope>compile</scope>
7878
</dependency>
7979
```
@@ -88,7 +88,7 @@ mvn clean package
8888

8989
Then manually install the following JARs:
9090

91-
- `target/aspose-barcode-cloud-25.6.0.jar`
91+
- `target/aspose-barcode-cloud-25.7.0.jar`
9292
- `target/lib/*.jar`
9393

9494
## Getting Started
@@ -176,10 +176,10 @@ Class | Method | HTTP request | Description
176176
*GenerateApi* | [**generate**](docs/GenerateApi.md#generate) | **GET** /barcode/generate/{barcodeType} | Generate barcode using GET request with parameters in route and query string.
177177
*GenerateApi* | [**generateBody**](docs/GenerateApi.md#generateBody) | **POST** /barcode/generate-body | Generate barcode using POST request with parameters in body in json or xml format.
178178
*GenerateApi* | [**generateMultipart**](docs/GenerateApi.md#generateMultipart) | **POST** /barcode/generate-multipart | Generate barcode using POST request with parameters in multipart form.
179-
*RecognizeApi* | [**recognize**](docs/RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string.
179+
*RecognizeApi* | [**recognize**](docs/RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use &#x60;recognize-body&#x60; or &#x60;recognize-multipart&#x60; endpoints instead.
180180
*RecognizeApi* | [**recognizeBase64**](docs/RecognizeApi.md#recognizeBase64) | **POST** /barcode/recognize-body | Recognize barcode from file in request body using POST requests with parameters in body in json or xml format.
181181
*RecognizeApi* | [**recognizeMultipart**](docs/RecognizeApi.md#recognizeMultipart) | **POST** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form.
182-
*ScanApi* | [**scan**](docs/ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string.
182+
*ScanApi* | [**scan**](docs/ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use &#x60;scan-body&#x60; or &#x60;scan-multipart&#x60; endpoints instead.
183183
*ScanApi* | [**scanBase64**](docs/ScanApi.md#scanBase64) | **POST** /barcode/scan-body | Scan barcode from file in request body using POST requests with parameter in body in json or xml format.
184184
*ScanApi* | [**scanMultipart**](docs/ScanApi.md#scanMultipart) | **POST** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form.
185185

docs/RecognizeApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ All URIs are relative to *<https://api.aspose.cloud/v4.0>*
44

55
Method | HTTP request | Description
66
------ | ------------ | -----------
7-
[**recognize**](RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string.
7+
[**recognize**](RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use &#x60;recognize-body&#x60; or &#x60;recognize-multipart&#x60; endpoints instead.
88
[**recognizeBase64**](RecognizeApi.md#recognizeBase64) | **POST** /barcode/recognize-body | Recognize barcode from file in request body using POST requests with parameters in body in json or xml format.
99
[**recognizeMultipart**](RecognizeApi.md#recognizeMultipart) | **POST** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form.
1010

1111
## recognize
1212

1313
> BarcodeResponseList recognize(barcodeType, fileUrl, recognitionMode, recognitionImageKind)
1414
15-
Recognize barcode from file on server using GET requests with parameters in route and query string.
15+
Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use &#x60;recognize-body&#x60; or &#x60;recognize-multipart&#x60; endpoints instead.
1616

1717

1818
### recognize parameters

docs/ScanApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ All URIs are relative to *<https://api.aspose.cloud/v4.0>*
44

55
Method | HTTP request | Description
66
------ | ------------ | -----------
7-
[**scan**](ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string.
7+
[**scan**](ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use &#x60;scan-body&#x60; or &#x60;scan-multipart&#x60; endpoints instead.
88
[**scanBase64**](ScanApi.md#scanBase64) | **POST** /barcode/scan-body | Scan barcode from file in request body using POST requests with parameter in body in json or xml format.
99
[**scanMultipart**](ScanApi.md#scanMultipart) | **POST** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form.
1010

1111
## scan
1212

1313
> BarcodeResponseList scan(fileUrl)
1414
15-
Scan barcode from file on server using GET requests with parameter in query string.
15+
Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use &#x60;scan-body&#x60; or &#x60;scan-multipart&#x60; endpoints instead.
1616

1717

1818
### scan parameters

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>aspose-barcode-cloud</artifactId>
77
<packaging>jar</packaging>
88
<name>aspose-barcode-cloud</name>
9-
<version>25.6.0</version>
9+
<version>25.7.0</version>
1010
<url>https://www.aspose.cloud</url>
1111
<description>Aspose.BarCode Cloud SDK for Java</description>
1212
<scm>

snippets/dependency.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<dependency>
1212
<groupId>com.aspose</groupId>
1313
<artifactId>aspose-barcode-cloud</artifactId>
14-
<version>25.6.0</version>
14+
<version>25.7.0</version>
1515
</dependency>
1616
<!-- Add other dependencies here -->
1717
</dependencies>

src/main/java/com/aspose/barcode/cloud/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
/** ApiClient. */
4141
public class ApiClient {
4242
public final String apiVersion = "v4.0";
43-
public final String clientVersion = "25.6.0";
43+
public final String clientVersion = "25.7.0";
4444

4545
private String baseUrl = "https://api.aspose.cloud";
4646
private String tokenUrl = "https://id.aspose.cloud/connect/token";
@@ -88,7 +88,7 @@ protected ApiClient(long readTimeoutMillis) {
8888
json = new JSON();
8989

9090
// Set default User-Agent.
91-
setUserAgent("OpenApi-Generator/25.6.0/java");
91+
setUserAgent("OpenApi-Generator/25.7.0/java");
9292

9393
addDefaultHeader("x-aspose-client", "java sdk");
9494
addDefaultHeader("x-aspose-client-version", clientVersion);

src/main/java/com/aspose/barcode/cloud/api/RecognizeApi.java

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,9 @@ private okhttp3.Call recognizeValidateBeforeCall(
164164
}
165165

166166
/**
167-
* Recognize barcode from file on server using GET requests with parameters in route and query
168-
* string.
167+
* Recognize barcode from file on server in the Internet using GET requests with parameter in
168+
* query string. For recognizing files from your hard drive use &#x60;recognize-body&#x60; or
169+
* &#x60;recognize-multipart&#x60; endpoints instead.
169170
*
170171
* @param request See {@link RecognizeRequestWrapper}
171172
* @return BarcodeResponseList
@@ -178,8 +179,9 @@ public BarcodeResponseList recognize(RecognizeRequestWrapper request) throws Api
178179
}
179180

180181
/**
181-
* Recognize barcode from file on server using GET requests with parameters in route and query
182-
* string.
182+
* Recognize barcode from file on server in the Internet using GET requests with parameter in
183+
* query string. For recognizing files from your hard drive use &#x60;recognize-body&#x60; or
184+
* &#x60;recognize-multipart&#x60; endpoints instead.
183185
*
184186
* @param request See {@link RecognizeRequestWrapper}
185187
* @return ApiResponse&lt;BarcodeResponseList&gt;
@@ -194,8 +196,9 @@ public ApiResponse<BarcodeResponseList> recognizeWithHttpInfo(RecognizeRequestWr
194196
}
195197

196198
/**
197-
* Recognize barcode from file on server using GET requests with parameters in route and query
198-
* string. (asynchronously)
199+
* Recognize barcode from file on server in the Internet using GET requests with parameter in
200+
* query string. For recognizing files from your hard drive use &#x60;recognize-body&#x60; or
201+
* &#x60;recognize-multipart&#x60; endpoints instead. (asynchronously)
199202
*
200203
* @param request See {@link RecognizeRequestWrapper}
201204
* @param callback The callback to be executed when the API call finishes

src/main/java/com/aspose/barcode/cloud/api/ScanApi.java

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,9 @@ private okhttp3.Call scanValidateBeforeCall(
141141
}
142142

143143
/**
144-
* Scan barcode from file on server using GET requests with parameter in query string.
144+
* Scan barcode from file on server in the Internet using GET requests with parameter in query
145+
* string. For scaning files from your hard drive use &#x60;scan-body&#x60; or
146+
* &#x60;scan-multipart&#x60; endpoints instead.
145147
*
146148
* @param request See {@link ScanRequestWrapper}
147149
* @return BarcodeResponseList
@@ -154,7 +156,9 @@ public BarcodeResponseList scan(ScanRequestWrapper request) throws ApiException
154156
}
155157

156158
/**
157-
* Scan barcode from file on server using GET requests with parameter in query string.
159+
* Scan barcode from file on server in the Internet using GET requests with parameter in query
160+
* string. For scaning files from your hard drive use &#x60;scan-body&#x60; or
161+
* &#x60;scan-multipart&#x60; endpoints instead.
158162
*
159163
* @param request See {@link ScanRequestWrapper}
160164
* @return ApiResponse&lt;BarcodeResponseList&gt;
@@ -169,8 +173,9 @@ public ApiResponse<BarcodeResponseList> scanWithHttpInfo(ScanRequestWrapper requ
169173
}
170174

171175
/**
172-
* Scan barcode from file on server using GET requests with parameter in query string.
173-
* (asynchronously)
176+
* Scan barcode from file on server in the Internet using GET requests with parameter in query
177+
* string. For scaning files from your hard drive use &#x60;scan-body&#x60; or
178+
* &#x60;scan-multipart&#x60; endpoints instead. (asynchronously)
174179
*
175180
* @param request See {@link ScanRequestWrapper}
176181
* @param callback The callback to be executed when the API call finishes

src/main/java/com/aspose/barcode/cloud/requests/RecognizeRequestWrapper.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@
3232
import java.net.URI;
3333

3434
/**
35-
* Recognize barcode from file on server using GET requests with parameters in route and query
36-
* string.
35+
* Recognize barcode from file on server in the Internet using GET requests with parameter in query
36+
* string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart`
37+
* endpoints instead.
3738
*/
3839
public class RecognizeRequestWrapper {
3940
/** Type of barcode to recognize. */
@@ -49,8 +50,9 @@ public class RecognizeRequestWrapper {
4950
public RecognitionImageKind recognitionImageKind;
5051

5152
/**
52-
* Recognize barcode from file on server using GET requests with parameters in route and query
53-
* string..
53+
* Recognize barcode from file on server in the Internet using GET requests with parameter in
54+
* query string. For recognizing files from your hard drive use `recognize-body` or
55+
* `recognize-multipart` endpoints instead..
5456
*
5557
* @param barcodeType Type of barcode to recognize
5658
* @param fileUrl Url to barcode image

src/main/java/com/aspose/barcode/cloud/requests/ScanRequestWrapper.java

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,19 @@
2727

2828
import java.net.URI;
2929

30-
/** Scan barcode from file on server using GET requests with parameter in query string. */
30+
/**
31+
* Scan barcode from file on server in the Internet using GET requests with parameter in query
32+
* string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints
33+
* instead.
34+
*/
3135
public class ScanRequestWrapper {
3236
/** Url to barcode image. */
3337
public final URI fileUrl;
3438

3539
/**
36-
* Scan barcode from file on server using GET requests with parameter in query string..
40+
* Scan barcode from file on server in the Internet using GET requests with parameter in query
41+
* string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints
42+
* instead..
3743
*
3844
* @param fileUrl Url to barcode image
3945
*/

0 commit comments

Comments
 (0)