Skip to content

Commit

Permalink
Change the annotated name to avoid future conflict on upper or lower …
Browse files Browse the repository at this point in the history
…camelcasing in alarms
  • Loading branch information
kingudk committed Sep 28, 2021
1 parent 2579ee3 commit 3779f3a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public WebAlarm(Alarm alarm) {

}

@XmlElement(name = "OrigDateTime")
@XmlElement(name = "origDateTime")
public String getOrigDateTime() {
return origDateTime;
}
Expand All @@ -60,7 +60,7 @@ public void setOrigDateTime(String origDateTime) {
this.origDateTime = origDateTime;
}

@XmlElement(name = "AlarmCode")
@XmlElement(name = "alarmCode")
public AlarmCode getAlarmCode() {
return alarmCode;
}
Expand All @@ -69,7 +69,7 @@ public void setAlarmCode(AlarmCode alarmCode) {
this.alarmCode = alarmCode;
}

@XmlElement(name = "AlarmRaiser")
@XmlElement(name = "alarmRaiser")
public String getAlarmRaiser() {
return alarmRaiser;
}
Expand All @@ -78,7 +78,7 @@ public void setAlarmRaiser(String alarmRaiser) {
this.alarmRaiser = alarmRaiser;
}

@XmlElement(name = "AlarmText")
@XmlElement(name = "alarmText")
public String getAlarmText() {
return alarmText;
}
Expand All @@ -87,7 +87,7 @@ public void setAlarmText(String alarmText) {
this.alarmText = alarmText;
}

@XmlElement(name = "CollectionID")
@XmlElement(name = "collectionID")
public String getCollectionID() {
return collectionID;
}
Expand Down

0 comments on commit 3779f3a

Please sign in to comment.