Skip to content
Open
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
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>6.0.5.Final</version>
<version>5.2.2.Final</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class NativeResponseBody {

private String ver;

private Collection<AssetResponse> asset;
private Collection<AssetResponse> assets;

private Link link;

Expand All @@ -47,12 +47,12 @@ public void setVer(String ver) {
this.ver = ver;
}

public Collection<AssetResponse> getAsset() {
return this.asset;
public Collection<AssetResponse> getAssets() {
return this.assets;
}

public void setAsset(Collection<AssetResponse> asset) {
this.asset = asset;
public void setAssets(Collection<AssetResponse> assets) {
this.assets = assets;
}

public Link getLink() {
Expand Down Expand Up @@ -93,7 +93,7 @@ public boolean equals(Object o) {
if (o == null || getClass() != o.getClass()) return false;
NativeResponseBody that = (NativeResponseBody) o;
return Objects.equals(getVer(), that.getVer())
&& Objects.equals(getAsset(), that.getAsset())
&& Objects.equals(getAssets(), that.getAssets())
&& Objects.equals(getLink(), that.getLink())
&& Objects.equals(getImptrackers(), that.getImptrackers())
&& Objects.equals(getJstracker(), that.getJstracker())
Expand All @@ -103,6 +103,6 @@ public boolean equals(Object o) {
@Override
public int hashCode() {
return Objects.hash(
getVer(), getAsset(), getLink(), getImptrackers(), getJstracker(), getExt());
getVer(), getAssets(), getLink(), getImptrackers(), getJstracker(), getExt());
}
}