Skip to content

Commit

Permalink
refactor: lower case instead of upper case for the beginning of fields
Browse files Browse the repository at this point in the history
  • Loading branch information
GtanSndil committed Feb 15, 2024
1 parent 52f195d commit 6ee4970
Showing 1 changed file with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ public class ColecticaSearchItemResult {
@JsonProperty("Notes")
private String notes = null;
@JsonProperty("VersionDate")
private String VersionDate;
private String versionDate;
@JsonProperty("VersionResponsibility")
private JSONObject versionResponsibility;
@JsonProperty("IsPublished")
private Boolean IsPublished = false;
private Boolean isPublished = false;
@JsonProperty("IsDeprecated")
private Boolean IsDeprecated = false;
private Boolean isDeprecated = false;
@JsonProperty("IsProvisional")
private Boolean IsProvisional = false;
private Boolean isProvisional = false;
@JsonProperty("ItemFormat")
private String ItemFormat;
private String itemFormat;
public JSONObject getSummary() {
return summary;
}
Expand Down Expand Up @@ -144,10 +144,10 @@ public void setNotes(String notes) {
this.notes = notes;
}
public String getVersionDate() {
return VersionDate;
return versionDate;
}
public void setVersionDate(String versionDate) {
VersionDate = versionDate;
this.versionDate = versionDate;
}
public JSONObject getVersionResponsibility() {
return versionResponsibility;
Expand All @@ -156,38 +156,38 @@ public void setVersionResponsibility(JSONObject versionResponsibility) {
this.versionResponsibility = versionResponsibility;
}
public Boolean getIsPublished() {
return IsPublished;
return isPublished;
}
public void setIsPublished(Boolean isPublished) {
IsPublished = isPublished;
this.isPublished = isPublished;
}
public Boolean getIsDeprecated() {
return IsDeprecated;
return isDeprecated;
}
public void setIsDeprecated(Boolean isDeprecated) {
IsDeprecated = isDeprecated;
this.isDeprecated = isDeprecated;
}
public Boolean getIsProvisional() {
return IsProvisional;
return isProvisional;
}
public void setIsProvisional(Boolean isProvisional) {
IsProvisional = isProvisional;
this.isProvisional = isProvisional;
}
public String getItemFormat() {
return ItemFormat;
return itemFormat;
}
public void setItemFormat(String itemFormat) {
ItemFormat = itemFormat;
this.itemFormat = itemFormat;
}
@Override
public String toString() {
return "ColecticaSearchResult [summary=" + summary + ", itemName=" + itemName + ", label=" + label
+ ", description=" + description + ", versionRationale=" + versionRationale + ", metadataRank="
+ metadataRank + ", repositoryName=" + repositoryName + ", isAuthoritative=" + isAuthoritative
+ ", tags=" + tags + ", itemType=" + itemType + ", agencyId=" + agencyId + ", version=" + version
+ ", identifier=" + identifier + ", item=" + item + ", notes=" + notes + ", VersionDate=" + VersionDate
+ ", versionResponsibility=" + versionResponsibility + ", IsPublished=" + IsPublished
+ ", IsDeprecated=" + IsDeprecated + ", IsProvisional=" + IsProvisional + ", ItemFormat=" + ItemFormat
+ ", identifier=" + identifier + ", item=" + item + ", notes=" + notes + ", VersionDate=" + versionDate
+ ", versionResponsibility=" + versionResponsibility + ", IsPublished=" + isPublished
+ ", IsDeprecated=" + isDeprecated + ", IsProvisional=" + isProvisional + ", ItemFormat=" + itemFormat
+ "]";
}

Expand Down

0 comments on commit 6ee4970

Please sign in to comment.