Skip to content

Commit

Permalink
Do update all methods for both role on 10 july 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
shabsElluminati committed Jul 10, 2023
1 parent b1ffd7d commit 844b16f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class AppEndPointAppSecurityForDevice implements Parcelable
@Expose
private List<Object> x509Certificate = null;

public final static Creator<AppEndPointAppSecurity> CREATOR = new Creator<AppEndPointAppSecurity>() {
public final static Parcelable.Creator<AppEndPointAppSecurity> CREATOR = new Creator<AppEndPointAppSecurity>() {


@SuppressWarnings({
Expand Down Expand Up @@ -100,4 +100,4 @@ public void writeToParcel(Parcel dest, int flags) {
public int describeContents() {
return 0;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class Body1 {
private String version;
@SerializedName("AppEndPoint")
@Expose
private AppEndPointAppSecurity appEndPoint;
private AppEndPointAppSecurityForDevice appEndPoint;
@SerializedName("NetEndPoint")
@Expose
private NetEndPointAppSecurity netEndPoint;
Expand All @@ -22,11 +22,11 @@ public void setVersion(String version) {
this.version = version;
}

public AppEndPointAppSecurity getAppEndPoint() {
public AppEndPointAppSecurityForDevice getAppEndPoint() {
return appEndPoint;
}

public void setAppEndPoint(AppEndPointAppSecurity appEndPoint) {
public void setAppEndPoint(AppEndPointAppSecurityForDevice appEndPoint) {
this.appEndPoint = appEndPoint;
}

Expand Down

1 comment on commit 844b16f

@awajs
Copy link
Owner

@awajs awajs commented on 844b16f Jul 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When making a commit can you add a comment as to the changes that have been made.

Please sign in to comment.