Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eventgrid/data-plane/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-eventgrid</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for eventgrid</name>
<description>This package contains Microsoft eventgrid SDK.</description>
<description>This package contains Microsoft Azure EventGrid SDK.</description>
<url>https://github.com/Azure/azure-sdk-for-java</url>
<licenses>
<license>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class StorageBlobCreatedEventData {
* returned in the Content-Length header from the blob.
*/
@JsonProperty(value = "contentLength")
private Integer contentLength;
private Long contentLength;

/**
* The type of blob.
Expand Down Expand Up @@ -187,7 +187,7 @@ public StorageBlobCreatedEventData withContentType(String contentType) {
*
* @return the contentLength value
*/
public Integer contentLength() {
public Long contentLength() {
return this.contentLength;
}

Expand All @@ -197,7 +197,7 @@ public Integer contentLength() {
* @param contentLength the contentLength value to set
* @return the StorageBlobCreatedEventData object itself.
*/
public StorageBlobCreatedEventData withContentLength(Integer contentLength) {
public StorageBlobCreatedEventData withContentLength(Long contentLength) {
this.contentLength = contentLength;
return this;
}
Expand Down