Merge pull request #48 from CommentSectionScientist/RemovesUnusedDuplicatedMethod

Removes unused Getter and renames Setter
This commit is contained in:
Marc Mültin 2020-05-02 13:51:45 +02:00 committed by GitHub
commit 1d4d22b3f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 10 deletions

View File

@ -140,7 +140,7 @@ public class V2GCommunicationSessionSECC extends V2GCommunicationSession impleme
setBackendInterface(SECCImplementationFactory.createBackendInterface(this));
// ACEVSE notification
setAcEVSEStatus(new ACEVSEStatusType());
setACEVSEStatus(new ACEVSEStatusType());
getACEVSEStatus().setEVSENotification(EVSENotificationType.NONE);
getACEVSEStatus().setNotificationMaxDelay(0);
getACEVSEStatus().setRCD(false);
@ -312,6 +312,10 @@ public class V2GCommunicationSessionSECC extends V2GCommunicationSession impleme
public ACEVSEStatusType getACEVSEStatus() {
return acEVSEStatus;
}
public void setACEVSEStatus(ACEVSEStatusType acEVSEStatus) {
this.acEVSEStatus = acEVSEStatus;
}
public PMaxScheduleType getPMaxSchedule() {
return pMaxSchedule;
@ -363,15 +367,6 @@ public class V2GCommunicationSessionSECC extends V2GCommunicationSession impleme
this.connectionHandler = connectionHandler;
}
public ACEVSEStatusType getAcEVSEStatus() {
return acEVSEStatus;
}
public void setAcEVSEStatus(ACEVSEStatusType acEVSEStatus) {
this.acEVSEStatus = acEVSEStatus;
}
public ArrayList<ServiceType> getOfferedServices() {
return offeredServices;
}