├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── main.yml │ └── review.yml ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── Dockerfile ├── LICENSE-HEADER.txt ├── LICENSE.txt ├── README.md ├── checkstyle.xml ├── docker-compose.yml ├── k8s ├── docker │ └── Dockerfile └── yaml │ ├── Deployment.yaml │ └── Service.yaml ├── maven-pmd-plugin-default.xml ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src ├── main │ ├── java │ │ └── de │ │ │ └── rwth │ │ │ └── idsg │ │ │ └── steve │ │ │ ├── NotificationFeature.java │ │ │ ├── SteveApplication.java │ │ │ ├── SteveException.java │ │ │ ├── config │ │ │ ├── ApiAuthenticationManager.java │ │ │ ├── ApiDocsConfiguration.java │ │ │ ├── BeanConfiguration.java │ │ │ ├── OcppConfiguration.java │ │ │ ├── SecurityConfiguration.java │ │ │ ├── SteveProperties.java │ │ │ └── WebSocketConfiguration.java │ │ │ ├── ocpp │ │ │ ├── ChargePointServiceInvoker.java │ │ │ ├── ChargePointServiceInvokerImpl.java │ │ │ ├── CommunicationTask.java │ │ │ ├── Ocpp15AndAboveTask.java │ │ │ ├── Ocpp16AndAboveTask.java │ │ │ ├── OcppCallback.java │ │ │ ├── OcppProtocol.java │ │ │ ├── OcppSecurityProfile.java │ │ │ ├── OcppTransport.java │ │ │ ├── OcppVersion.java │ │ │ ├── RequestResult.java │ │ │ ├── TaskOrigin.java │ │ │ ├── converter │ │ │ │ ├── Convert.java │ │ │ │ ├── Server12to15.java │ │ │ │ ├── Server12to15Impl.java │ │ │ │ ├── Server15to16.java │ │ │ │ └── Server15to16Impl.java │ │ │ ├── soap │ │ │ │ ├── CentralSystemService12_SoapServer.java │ │ │ │ ├── CentralSystemService15_SoapServer.java │ │ │ │ ├── CentralSystemService16_SoapServer.java │ │ │ │ ├── ChargePointServiceSoapInvoker.java │ │ │ │ ├── ClientProvider.java │ │ │ │ ├── ClientProviderWithCache.java │ │ │ │ ├── LoggingFeatureProxy.java │ │ │ │ ├── MediatorInInterceptor.java │ │ │ │ ├── MessageHeaderInterceptor.java │ │ │ │ └── MessageIdInterceptor.java │ │ │ ├── task │ │ │ │ ├── CancelReservationTask.java │ │ │ │ ├── CertificateSignedTask.java │ │ │ │ ├── ChangeAvailabilityTask.java │ │ │ │ ├── ChangeConfigurationTask.java │ │ │ │ ├── ClearCacheTask.java │ │ │ │ ├── ClearChargingProfileTask.java │ │ │ │ ├── DataTransferTask.java │ │ │ │ ├── DeleteCertificateTask.java │ │ │ │ ├── ExtendedTriggerMessageTask.java │ │ │ │ ├── GetCompositeScheduleTask.java │ │ │ │ ├── GetConfigurationTask.java │ │ │ │ ├── GetDiagnosticsTask.java │ │ │ │ ├── GetInstalledCertificateIdsTask.java │ │ │ │ ├── GetLocalListVersionTask.java │ │ │ │ ├── GetLogTask.java │ │ │ │ ├── InstallCertificateTask.java │ │ │ │ ├── RemoteStartTransactionTask.java │ │ │ │ ├── RemoteStopTransactionTask.java │ │ │ │ ├── ReserveNowTask.java │ │ │ │ ├── ResetTask.java │ │ │ │ ├── SendLocalListTask.java │ │ │ │ ├── SetChargingProfileTask.java │ │ │ │ ├── SetChargingProfileTaskAdhoc.java │ │ │ │ ├── SetChargingProfileTaskFromDB.java │ │ │ │ ├── SignedUpdateFirmwareTask.java │ │ │ │ ├── TriggerMessageTask.java │ │ │ │ ├── UnlockConnectorTask.java │ │ │ │ └── UpdateFirmwareTask.java │ │ │ └── ws │ │ │ │ ├── AbstractTypeStore.java │ │ │ │ ├── AbstractWebSocketEndpoint.java │ │ │ │ ├── ChargePointConfigUpdater.java │ │ │ │ ├── ChargePointServiceJsonInvoker.java │ │ │ │ ├── ConcurrentWebSocketHandler.java │ │ │ │ ├── ErrorFactory.java │ │ │ │ ├── FutureResponseContextStore.java │ │ │ │ ├── FutureResponseContextStoreImpl.java │ │ │ │ ├── JsonObjectMapper.java │ │ │ │ ├── OcppWebSocketHandshakeHandler.java │ │ │ │ ├── PingTask.java │ │ │ │ ├── SessionContextStore.java │ │ │ │ ├── SessionContextStoreHolder.java │ │ │ │ ├── SessionContextStoreImpl.java │ │ │ │ ├── TypeStore.java │ │ │ │ ├── WebSocketLogger.java │ │ │ │ ├── custom │ │ │ │ ├── CustomStringModule.java │ │ │ │ ├── EnumMixin.java │ │ │ │ ├── EnumProcessor.java │ │ │ │ ├── MeterValue15Deserializer.java │ │ │ │ ├── MeterValue15Mixin.java │ │ │ │ ├── WsSessionSelectStrategy.java │ │ │ │ └── WsSessionSelectStrategyEnum.java │ │ │ │ ├── data │ │ │ │ ├── ActionResponsePair.java │ │ │ │ ├── CommunicationContext.java │ │ │ │ ├── ErrorCode.java │ │ │ │ ├── FutureResponseContext.java │ │ │ │ ├── MessageType.java │ │ │ │ ├── OcppJsonCall.java │ │ │ │ ├── OcppJsonError.java │ │ │ │ ├── OcppJsonMessage.java │ │ │ │ ├── OcppJsonResponse.java │ │ │ │ ├── OcppJsonResult.java │ │ │ │ └── SessionContext.java │ │ │ │ ├── ocpp12 │ │ │ │ ├── Ocpp12JacksonModule.java │ │ │ │ ├── Ocpp12TypeStore.java │ │ │ │ └── Ocpp12WebSocketEndpoint.java │ │ │ │ ├── ocpp15 │ │ │ │ ├── Ocpp15JacksonModule.java │ │ │ │ ├── Ocpp15TypeStore.java │ │ │ │ └── Ocpp15WebSocketEndpoint.java │ │ │ │ ├── ocpp16 │ │ │ │ ├── Ocpp16JacksonModule.java │ │ │ │ ├── Ocpp16TypeStore.java │ │ │ │ └── Ocpp16WebSocketEndpoint.java │ │ │ │ └── pipeline │ │ │ │ ├── Deserializer.java │ │ │ │ ├── IncomingPipeline.java │ │ │ │ ├── OcppCallHandler.java │ │ │ │ ├── OutgoingCallPipeline.java │ │ │ │ ├── Sender.java │ │ │ │ └── Serializer.java │ │ │ ├── repository │ │ │ ├── AddressRepository.java │ │ │ ├── CertificateRepository.java │ │ │ ├── ChargePointRepository.java │ │ │ ├── ChargingProfileRepository.java │ │ │ ├── DataImportExportRepository.java │ │ │ ├── EventRepository.java │ │ │ ├── GenericRepository.java │ │ │ ├── OcppServerRepository.java │ │ │ ├── OcppTagRepository.java │ │ │ ├── ReservationRepository.java │ │ │ ├── ReservationStatus.java │ │ │ ├── SettingsRepository.java │ │ │ ├── TaskStore.java │ │ │ ├── TransactionRepository.java │ │ │ ├── UserRepository.java │ │ │ ├── WebUserRepository.java │ │ │ ├── dto │ │ │ │ ├── ChargePoint.java │ │ │ │ ├── ChargePointRegistration.java │ │ │ │ ├── ChargePointSelect.java │ │ │ │ ├── ChargingProfile.java │ │ │ │ ├── ChargingProfileAssignment.java │ │ │ │ ├── ConnectorStatus.java │ │ │ │ ├── DbVersion.java │ │ │ │ ├── InsertConnectorStatusParams.java │ │ │ │ ├── InsertReservationParams.java │ │ │ │ ├── InsertTransactionParams.java │ │ │ │ ├── InstalledCertificate.java │ │ │ │ ├── OcppTag.java │ │ │ │ ├── Reservation.java │ │ │ │ ├── SecurityEvent.java │ │ │ │ ├── StatusEvent.java │ │ │ │ ├── TaskOverview.java │ │ │ │ ├── Transaction.java │ │ │ │ ├── TransactionDetails.java │ │ │ │ ├── TransactionStatusUpdate.java │ │ │ │ ├── UpdateChargeboxParams.java │ │ │ │ ├── UpdateTransactionParams.java │ │ │ │ └── User.java │ │ │ └── impl │ │ │ │ ├── AddressRepositoryImpl.java │ │ │ │ ├── CertificateRepositoryImpl.java │ │ │ │ ├── ChargePointRepositoryImpl.java │ │ │ │ ├── ChargingProfileRepositoryImpl.java │ │ │ │ ├── DataImportExportRepositoryImpl.java │ │ │ │ ├── EventRepositoryImpl.java │ │ │ │ ├── GenericRepositoryImpl.java │ │ │ │ ├── OcppServerRepositoryImpl.java │ │ │ │ ├── OcppTagRepositoryImpl.java │ │ │ │ ├── RepositoryUtils.java │ │ │ │ ├── ReservationRepositoryImpl.java │ │ │ │ ├── SettingsRepositoryImpl.java │ │ │ │ ├── TaskStoreImpl.java │ │ │ │ ├── TransactionRepositoryImpl.java │ │ │ │ ├── UserRepositoryImpl.java │ │ │ │ └── WebUserRepositoryImpl.java │ │ │ ├── service │ │ │ ├── AuthTagService.java │ │ │ ├── AuthTagServiceLocal.java │ │ │ ├── BackgroundService.java │ │ │ ├── CentralSystemService16_Service.java │ │ │ ├── CertificateSigningService.java │ │ │ ├── CertificateSigningServiceAbstract.java │ │ │ ├── CertificateSigningServiceLocal.java │ │ │ ├── CertificateValidator.java │ │ │ ├── ChargePointService.java │ │ │ ├── ChargePointServiceClient.java │ │ │ ├── DataImportExportService.java │ │ │ ├── DummyReleaseCheckService.java │ │ │ ├── GithubReleaseCheckService.java │ │ │ ├── MailService.java │ │ │ ├── MailServiceDefault.java │ │ │ ├── NotificationService.java │ │ │ ├── NotificationServiceForUser.java │ │ │ ├── OcppTagService.java │ │ │ ├── ReleaseCheckService.java │ │ │ ├── TransactionService.java │ │ │ ├── UnidentifiedIncomingObjectService.java │ │ │ ├── UserService.java │ │ │ ├── WebUserService.java │ │ │ ├── dto │ │ │ │ └── UnidentifiedIncomingObject.java │ │ │ └── notification │ │ │ │ ├── OccpStationBooted.java │ │ │ │ ├── OcppStationStatusFailure.java │ │ │ │ ├── OcppStationStatusSuspendedEV.java │ │ │ │ ├── OcppStationWebSocketConnected.java │ │ │ │ ├── OcppStationWebSocketDisconnected.java │ │ │ │ ├── OcppTransactionEnded.java │ │ │ │ └── OcppTransactionStarted.java │ │ │ ├── utils │ │ │ ├── CertificateUtils.java │ │ │ ├── ConnectorStatusCountFilter.java │ │ │ ├── ConnectorStatusFilter.java │ │ │ ├── ControllerHelper.java │ │ │ ├── CountryCodesProvider.java │ │ │ ├── CustomDSL.java │ │ │ ├── DateConverter.java │ │ │ ├── DateTimeConverter.java │ │ │ ├── DateTimeUtils.java │ │ │ ├── InternetChecker.java │ │ │ ├── LogFileRetriever.java │ │ │ ├── OcppTagActivityRecordUtils.java │ │ │ ├── StringUtils.java │ │ │ ├── TransactionStopServiceHelper.java │ │ │ └── mapper │ │ │ │ ├── AddressMapper.java │ │ │ │ ├── ChargePointDetailsMapper.java │ │ │ │ ├── ChargingProfileDetailsMapper.java │ │ │ │ ├── OcppTagFormMapper.java │ │ │ │ └── UserFormMapper.java │ │ │ └── web │ │ │ ├── BatchInsertConverter.java │ │ │ ├── ChargePointSelectEditor.java │ │ │ ├── DateTimeEditor.java │ │ │ ├── GlobalControllerAdvice.java │ │ │ ├── LocalDateEditor.java │ │ │ ├── api │ │ │ ├── ApiControllerAdvice.java │ │ │ ├── OcppTagsRestController.java │ │ │ └── TransactionsRestController.java │ │ │ ├── controller │ │ │ ├── AboutSettingsController.java │ │ │ ├── AjaxCallController.java │ │ │ ├── CertificatesController.java │ │ │ ├── ChargePointsController.java │ │ │ ├── ChargingProfilesController.java │ │ │ ├── EventsController.java │ │ │ ├── HomeController.java │ │ │ ├── LogController.java │ │ │ ├── Ocpp12Controller.java │ │ │ ├── Ocpp15Controller.java │ │ │ ├── Ocpp16Controller.java │ │ │ ├── Ocpp16ImprovedSecurityController.java │ │ │ ├── OcppTagsController.java │ │ │ ├── RootRedirectController.java │ │ │ ├── SignInOutController.java │ │ │ ├── TaskController.java │ │ │ ├── TransactionsReservationsController.java │ │ │ └── UsersController.java │ │ │ ├── dto │ │ │ ├── Address.java │ │ │ ├── BooleanType.java │ │ │ ├── ChargePointBatchInsertForm.java │ │ │ ├── ChargePointForm.java │ │ │ ├── ChargePointQueryForm.java │ │ │ ├── ChargingProfileAssignmentQueryForm.java │ │ │ ├── ChargingProfileForm.java │ │ │ ├── ChargingProfileQueryForm.java │ │ │ ├── ConnectorStatusForm.java │ │ │ ├── DataExportForm.java │ │ │ ├── EndpointInfo.java │ │ │ ├── InstalledCertificateQueryForm.java │ │ │ ├── OcppJsonStatus.java │ │ │ ├── OcppTagBatchInsertForm.java │ │ │ ├── OcppTagForm.java │ │ │ ├── OcppTagQueryForm.java │ │ │ ├── QueryForm.java │ │ │ ├── QueryPeriodFromToFilter.java │ │ │ ├── QueryPeriodType.java │ │ │ ├── QueryPeriodTypeFilter.java │ │ │ ├── ReleaseReport.java │ │ │ ├── ReleaseResponse.java │ │ │ ├── ReservationQueryForm.java │ │ │ ├── SecurityEventsQueryForm.java │ │ │ ├── SettingsForm.java │ │ │ ├── SignedCertificateQueryForm.java │ │ │ ├── Statistics.java │ │ │ ├── StatusEventType.java │ │ │ ├── StatusEventsQueryForm.java │ │ │ ├── TransactionQueryForm.java │ │ │ ├── UserForm.java │ │ │ ├── UserQueryForm.java │ │ │ ├── UserSex.java │ │ │ └── ocpp │ │ │ │ ├── AvailabilityType.java │ │ │ │ ├── CancelReservationParams.java │ │ │ │ ├── CertificateSignedParams.java │ │ │ │ ├── ChangeAvailabilityParams.java │ │ │ │ ├── ChangeConfigurationParams.java │ │ │ │ ├── ChargePointSelection.java │ │ │ │ ├── ClearChargingProfileFilterType.java │ │ │ │ ├── ClearChargingProfileParams.java │ │ │ │ ├── ConfigurationKeyEnum.java │ │ │ │ ├── ConfigurationKeyReadWriteEnum.java │ │ │ │ ├── DataTransferParams.java │ │ │ │ ├── DeleteCertificateParams.java │ │ │ │ ├── ExtendedTriggerMessageParams.java │ │ │ │ ├── GetCompositeScheduleParams.java │ │ │ │ ├── GetConfigurationParams.java │ │ │ │ ├── GetDiagnosticsParams.java │ │ │ │ ├── GetInstalledCertificateIdsParams.java │ │ │ │ ├── GetLogParams.java │ │ │ │ ├── InstallCertificateParams.java │ │ │ │ ├── MultipleChargePointSelect.java │ │ │ │ ├── RemoteStartTransactionParams.java │ │ │ │ ├── RemoteStopTransactionParams.java │ │ │ │ ├── ReserveNowParams.java │ │ │ │ ├── ResetParams.java │ │ │ │ ├── ResetType.java │ │ │ │ ├── SendLocalListParams.java │ │ │ │ ├── SendLocalListUpdateType.java │ │ │ │ ├── SetChargingProfileParams.java │ │ │ │ ├── SignedUpdateFirmwareParams.java │ │ │ │ ├── SingleChargePointSelect.java │ │ │ │ ├── TriggerMessageEnum.java │ │ │ │ ├── TriggerMessageParams.java │ │ │ │ ├── UnlockConnectorParams.java │ │ │ │ └── UpdateFirmwareParams.java │ │ │ └── validation │ │ │ ├── ChargeBoxId.java │ │ │ ├── ChargeBoxIdListValidator.java │ │ │ ├── ChargeBoxIdValidator.java │ │ │ ├── EmailCollection.java │ │ │ ├── EmailCollectionValidator.java │ │ │ ├── IdTag.java │ │ │ ├── IdTagListValidator.java │ │ │ ├── IdTagValidator.java │ │ │ ├── SecurityProfileValid.java │ │ │ └── SecurityProfileValidator.java │ ├── resources │ │ ├── application-dev.properties │ │ ├── application-docker.properties │ │ ├── application-kubernetes.properties │ │ ├── application-prod.properties │ │ ├── application-test.properties │ │ ├── application.yml │ │ ├── db │ │ │ └── migration │ │ │ │ ├── B1_0_5__stevedb.sql │ │ │ │ ├── V0_6_6__inital.sql │ │ │ │ ├── V0_6_7__update.sql │ │ │ │ ├── V0_6_8__update.sql │ │ │ │ ├── V0_6_9__update.sql │ │ │ │ ├── V0_7_0__update.sql │ │ │ │ ├── V0_7_1__update.sql │ │ │ │ ├── V0_7_2__update.sql │ │ │ │ ├── V0_7_3__update.sql │ │ │ │ ├── V0_7_6__update.sql │ │ │ │ ├── V0_7_7__update.sql │ │ │ │ ├── V0_7_8__update.sql │ │ │ │ ├── V0_7_9__update.sql │ │ │ │ ├── V0_8_0__update.sql │ │ │ │ ├── V0_8_1__update.sql │ │ │ │ ├── V0_8_2__update.sql │ │ │ │ ├── V0_8_4__update.sql │ │ │ │ ├── V0_8_5__update.sql │ │ │ │ ├── V0_8_6__update.sql │ │ │ │ ├── V0_8_7__update.sql │ │ │ │ ├── V0_8_8__update.sql │ │ │ │ ├── V0_8_9__update.sql │ │ │ │ ├── V0_9_0__update.sql │ │ │ │ ├── V0_9_1__update.sql │ │ │ │ ├── V0_9_2__update.sql │ │ │ │ ├── V0_9_3__update.sql │ │ │ │ ├── V0_9_4__update.sql │ │ │ │ ├── V0_9_5__update.sql │ │ │ │ ├── V0_9_6__update.sql │ │ │ │ ├── V0_9_7__update.sql │ │ │ │ ├── V0_9_8__update.sql │ │ │ │ ├── V0_9_9__update.sql │ │ │ │ ├── V1_0_0__update.sql │ │ │ │ ├── V1_0_1__update.sql │ │ │ │ ├── V1_0_2__update.sql │ │ │ │ ├── V1_0_3__update.sql │ │ │ │ ├── V1_0_4__update.sql │ │ │ │ ├── V1_0_5__update.sql │ │ │ │ ├── V1_0_6__update.sql │ │ │ │ ├── V1_0_7__update.sql │ │ │ │ ├── V1_0_8__update.sql │ │ │ │ ├── V1_0_9__update.sql │ │ │ │ ├── V1_1_0__update.sql │ │ │ │ └── V1_1_1__ocpp16_security.sql │ │ ├── logback-spring-dev.xml │ │ ├── logback-spring-docker.xml │ │ ├── logback-spring-prod.xml │ │ └── logback-spring.xml │ └── webapp │ │ ├── WEB-INF │ │ ├── views │ │ │ ├── 00-context.jsp │ │ │ ├── 00-cp-multiple.jsp │ │ │ ├── 00-cp-single.jsp │ │ │ ├── 00-error.jsp │ │ │ ├── 00-footer.jsp │ │ │ ├── 00-header.jsp │ │ │ ├── 00-op-bind-errors.jsp │ │ │ ├── GetConfigurationResponse.jsp │ │ │ ├── about.jsp │ │ │ ├── connectorStatus.jsp │ │ │ ├── data-man │ │ │ │ ├── 00-address.jsp │ │ │ │ ├── 00-charging-profile.jsp │ │ │ │ ├── 00-cp-misc.jsp │ │ │ │ ├── 00-ocppTag.jsp │ │ │ │ ├── 00-user-ocpp.jsp │ │ │ │ ├── 00-user-profile.jsp │ │ │ │ ├── chargepointAdd.jsp │ │ │ │ ├── chargepointDetails.jsp │ │ │ │ ├── chargepoints.jsp │ │ │ │ ├── chargingProfileAdd.jsp │ │ │ │ ├── chargingProfileAssignments.jsp │ │ │ │ ├── chargingProfileDetails.jsp │ │ │ │ ├── chargingProfiles.jsp │ │ │ │ ├── ocppTagAdd.jsp │ │ │ │ ├── ocppTagDetails.jsp │ │ │ │ ├── ocppTags.jsp │ │ │ │ ├── reservations.jsp │ │ │ │ ├── transactionDetails.jsp │ │ │ │ ├── transactions.jsp │ │ │ │ ├── userAdd.jsp │ │ │ │ ├── userDetails.jsp │ │ │ │ └── users.jsp │ │ │ ├── events-certs │ │ │ │ ├── certificatesInstalled.jsp │ │ │ │ ├── certificatesSigned.jsp │ │ │ │ ├── securityEvents.jsp │ │ │ │ ├── statusEventJobDetails.jsp │ │ │ │ └── statusEvents.jsp │ │ │ ├── home.jsp │ │ │ ├── ocppJsonStatus.jsp │ │ │ ├── op-forms │ │ │ │ ├── CancelReservationForm.jsp │ │ │ │ ├── ChangeAvailabilityForm.jsp │ │ │ │ ├── ChangeConfigurationForm.jsp │ │ │ │ ├── ClearCacheForm.jsp │ │ │ │ ├── ClearChargingProfileForm.jsp │ │ │ │ ├── DataTransferForm.jsp │ │ │ │ ├── ExtendedTriggerMessageForm.jsp │ │ │ │ ├── GetCompositeScheduleForm.jsp │ │ │ │ ├── GetConfigurationForm.jsp │ │ │ │ ├── GetDiagnosticsForm.jsp │ │ │ │ ├── GetInstalledCertificateIds.jsp │ │ │ │ ├── GetLocalListForm.jsp │ │ │ │ ├── GetLogForm.jsp │ │ │ │ ├── InstallCertificateForm.jsp │ │ │ │ ├── RemoteStartTransactionForm.jsp │ │ │ │ ├── RemoteStopTransactionForm.jsp │ │ │ │ ├── ReserveNowForm.jsp │ │ │ │ ├── ResetForm.jsp │ │ │ │ ├── SendLocalListForm.jsp │ │ │ │ ├── SetChargingProfileForm.jsp │ │ │ │ ├── SignedUpdateFirmwareForm.jsp │ │ │ │ ├── TriggerMessageForm.jsp │ │ │ │ ├── UnlockConnectorForm.jsp │ │ │ │ └── UpdateFirmwareForm.jsp │ │ │ ├── op12 │ │ │ │ ├── ChangeAvailability.jsp │ │ │ │ ├── ChangeConfiguration.jsp │ │ │ │ ├── ClearCache.jsp │ │ │ │ ├── GetDiagnostics.jsp │ │ │ │ ├── RemoteStartTransaction.jsp │ │ │ │ ├── RemoteStopTransaction.jsp │ │ │ │ ├── Reset.jsp │ │ │ │ ├── UnlockConnector.jsp │ │ │ │ └── UpdateFirmware.jsp │ │ │ ├── op15 │ │ │ │ ├── CancelReservation.jsp │ │ │ │ ├── ChangeAvailability.jsp │ │ │ │ ├── ChangeConfiguration.jsp │ │ │ │ ├── ClearCache.jsp │ │ │ │ ├── DataTransfer.jsp │ │ │ │ ├── GetConfiguration.jsp │ │ │ │ ├── GetDiagnostics.jsp │ │ │ │ ├── GetLocalListVersion.jsp │ │ │ │ ├── RemoteStartTransaction.jsp │ │ │ │ ├── RemoteStopTransaction.jsp │ │ │ │ ├── ReserveNow.jsp │ │ │ │ ├── Reset.jsp │ │ │ │ ├── SendLocalList.jsp │ │ │ │ ├── UnlockConnector.jsp │ │ │ │ └── UpdateFirmware.jsp │ │ │ ├── op16 │ │ │ │ ├── 00-op16-left-menu.jsp │ │ │ │ ├── CancelReservation.jsp │ │ │ │ ├── ChangeAvailability.jsp │ │ │ │ ├── ChangeConfiguration.jsp │ │ │ │ ├── ClearCache.jsp │ │ │ │ ├── ClearChargingProfile.jsp │ │ │ │ ├── DataTransfer.jsp │ │ │ │ ├── ExtendedTriggerMessage.jsp │ │ │ │ ├── GetCompositeSchedule.jsp │ │ │ │ ├── GetCompositeScheduleResponse.jsp │ │ │ │ ├── GetConfiguration.jsp │ │ │ │ ├── GetDiagnostics.jsp │ │ │ │ ├── GetInstalledCertificateIds.jsp │ │ │ │ ├── GetLocalListVersion.jsp │ │ │ │ ├── GetLog.jsp │ │ │ │ ├── InstallCertificate.jsp │ │ │ │ ├── RemoteStartTransaction.jsp │ │ │ │ ├── RemoteStopTransaction.jsp │ │ │ │ ├── ReserveNow.jsp │ │ │ │ ├── Reset.jsp │ │ │ │ ├── SendLocalList.jsp │ │ │ │ ├── SetChargingProfile.jsp │ │ │ │ ├── SignedUpdateFirmware.jsp │ │ │ │ ├── TriggerMessage.jsp │ │ │ │ ├── UnlockConnector.jsp │ │ │ │ └── UpdateFirmware.jsp │ │ │ ├── settings.jsp │ │ │ ├── signin.jsp │ │ │ ├── snippets │ │ │ │ ├── clearChargingProfile.js │ │ │ │ ├── confKeySelect.js │ │ │ │ ├── datePicker-past.js │ │ │ │ ├── dateTimePicker-future.js │ │ │ │ ├── dateTimePicker-past.js │ │ │ │ ├── dateTimePicker.js │ │ │ │ ├── getConnectorIds.js │ │ │ │ ├── getConnectorIdsZeroAllowed.js │ │ │ │ ├── getReservationIds.js │ │ │ │ ├── getTransactionIds.js │ │ │ │ ├── periodTypeSelect.js │ │ │ │ ├── schedulePeriodsTable.js │ │ │ │ ├── sendLocalList.js │ │ │ │ └── sortable.js │ │ │ ├── taskResult.jsp │ │ │ └── tasks.jsp │ │ └── web.xml │ │ └── static │ │ ├── css │ │ ├── DroidSerif.ttf │ │ ├── images │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-timepicker-addon.min.css │ │ ├── jquery-ui.min.css │ │ └── style.css │ │ ├── images │ │ ├── favicon.ico │ │ ├── info.png │ │ ├── logo.png │ │ ├── logo2.png │ │ └── offline-icon.svg │ │ └── js │ │ ├── jquery-2.0.3.min.js │ │ ├── jquery-ui-timepicker-addon.min.js │ │ ├── jquery-ui.min.js │ │ ├── script.js │ │ └── stupidtable.min.js └── test │ └── java │ └── de │ └── rwth │ └── idsg │ └── steve │ ├── ApplicationJsonTest.java │ ├── ApplicationTest.java │ ├── OperationalSoapOCPP16Test.java │ ├── StressTest.java │ ├── StressTestJsonOCPP16.java │ ├── StressTestSoapOCPP16.java │ ├── TypeStoreTest.java │ ├── issues │ ├── Issue1219.java │ ├── Issue72.java │ ├── Issue72LowLevelSoap.java │ ├── Issue73FixTest.java │ └── Issue81.java │ ├── ocpp │ ├── OcppProtocolTest.java │ ├── OcppVersionTest.java │ ├── task │ │ └── ChangeConfigurationTaskTest.java │ └── ws │ │ └── custom │ │ └── CustomStringModuleTest.java │ ├── service │ └── UserServiceTest.java │ ├── utils │ ├── ConnectorStatusFilterTest.java │ ├── Helpers.java │ ├── OcppJsonChargePoint.java │ ├── StressTester.java │ ├── StringUtilsTest.java │ ├── TransactionStopServiceHelperTest.java │ └── __DatabasePreparer__.java │ └── web │ ├── DateTimeEditorTest.java │ ├── api │ ├── AbstractControllerTest.java │ ├── OcppTagsRestControllerTest.java │ └── TransactionRestControllerTest.java │ └── validation │ ├── ChargeBoxIdValidatorTest.java │ ├── IdTagValidatorTest.java │ └── SecurityProfileValidatorTest.java └── website ├── logo └── managed-by-steve.pdf └── screenshots ├── certiticates-installed.png ├── certiticates-signed.png ├── chargepoints.png ├── charging-profiles.png ├── connector-status.png ├── events-security.png ├── events-status.png ├── home.png ├── lightsail-1-create-instance.PNG ├── lightsail-2-static-ip.PNG ├── lightsail-3-firewall.PNG ├── lightsail-4-create-database.PNG ├── lightsail-5-check-database-status.PNG ├── lightsail-6-connect-instance.PNG ├── ocpp-tags.png ├── ocpp12.png ├── ocpp15.png ├── ocpp16.png ├── reservations.png ├── settings.png ├── transactions.png └── users.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [goekay] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/.github/workflows/review.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.idea 3 | *.iml 4 | .DS_Store -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE-HEADER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/LICENSE-HEADER.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/README.md -------------------------------------------------------------------------------- /checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/checkstyle.xml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /k8s/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/k8s/docker/Dockerfile -------------------------------------------------------------------------------- /k8s/yaml/Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/k8s/yaml/Deployment.yaml -------------------------------------------------------------------------------- /k8s/yaml/Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/k8s/yaml/Service.yaml -------------------------------------------------------------------------------- /maven-pmd-plugin-default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/maven-pmd-plugin-default.xml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/NotificationFeature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/NotificationFeature.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/SteveApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/SteveApplication.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/SteveException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/SteveException.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/config/ApiAuthenticationManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/config/ApiAuthenticationManager.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/config/ApiDocsConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/config/ApiDocsConfiguration.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/config/BeanConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/config/BeanConfiguration.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/config/OcppConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/config/OcppConfiguration.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/config/SecurityConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/config/SecurityConfiguration.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/config/SteveProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/config/SteveProperties.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/config/WebSocketConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/config/WebSocketConfiguration.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ChargePointServiceInvoker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ChargePointServiceInvoker.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ChargePointServiceInvokerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ChargePointServiceInvokerImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/CommunicationTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/CommunicationTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/Ocpp15AndAboveTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/Ocpp15AndAboveTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/Ocpp16AndAboveTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/Ocpp16AndAboveTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/OcppCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/OcppCallback.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/OcppProtocol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/OcppProtocol.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/OcppSecurityProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/OcppSecurityProfile.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/OcppTransport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/OcppTransport.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/OcppVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/OcppVersion.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/RequestResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/RequestResult.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/TaskOrigin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/TaskOrigin.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/converter/Convert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/converter/Convert.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/converter/Server12to15.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/converter/Server12to15.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/converter/Server12to15Impl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/converter/Server12to15Impl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/converter/Server15to16.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/converter/Server15to16.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/converter/Server15to16Impl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/converter/Server15to16Impl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/soap/CentralSystemService12_SoapServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/soap/CentralSystemService12_SoapServer.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/soap/CentralSystemService15_SoapServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/soap/CentralSystemService15_SoapServer.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/soap/CentralSystemService16_SoapServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/soap/CentralSystemService16_SoapServer.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/soap/ChargePointServiceSoapInvoker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/soap/ChargePointServiceSoapInvoker.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/soap/ClientProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/soap/ClientProvider.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/soap/ClientProviderWithCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/soap/ClientProviderWithCache.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/soap/LoggingFeatureProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/soap/LoggingFeatureProxy.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/soap/MediatorInInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/soap/MediatorInInterceptor.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/soap/MessageHeaderInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/soap/MessageHeaderInterceptor.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/soap/MessageIdInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/soap/MessageIdInterceptor.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/CancelReservationTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/CancelReservationTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/CertificateSignedTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/CertificateSignedTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/ChangeAvailabilityTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/ChangeAvailabilityTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/ChangeConfigurationTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/ChangeConfigurationTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/ClearCacheTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/ClearCacheTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/ClearChargingProfileTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/ClearChargingProfileTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/DataTransferTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/DataTransferTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/DeleteCertificateTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/DeleteCertificateTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/ExtendedTriggerMessageTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/ExtendedTriggerMessageTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/GetCompositeScheduleTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/GetCompositeScheduleTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/GetConfigurationTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/GetConfigurationTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/GetDiagnosticsTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/GetDiagnosticsTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/GetInstalledCertificateIdsTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/GetInstalledCertificateIdsTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/GetLocalListVersionTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/GetLocalListVersionTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/GetLogTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/GetLogTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/InstallCertificateTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/InstallCertificateTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/RemoteStartTransactionTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/RemoteStartTransactionTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/RemoteStopTransactionTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/RemoteStopTransactionTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/ReserveNowTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/ReserveNowTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/ResetTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/ResetTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/SendLocalListTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/SendLocalListTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/SetChargingProfileTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/SetChargingProfileTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/SetChargingProfileTaskAdhoc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/SetChargingProfileTaskAdhoc.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/SetChargingProfileTaskFromDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/SetChargingProfileTaskFromDB.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/SignedUpdateFirmwareTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/SignedUpdateFirmwareTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/TriggerMessageTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/TriggerMessageTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/UnlockConnectorTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/UnlockConnectorTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/task/UpdateFirmwareTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/task/UpdateFirmwareTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/AbstractTypeStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/AbstractTypeStore.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/AbstractWebSocketEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/AbstractWebSocketEndpoint.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/ChargePointConfigUpdater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/ChargePointConfigUpdater.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/ChargePointServiceJsonInvoker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/ChargePointServiceJsonInvoker.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/ConcurrentWebSocketHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/ConcurrentWebSocketHandler.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/ErrorFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/ErrorFactory.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/FutureResponseContextStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/FutureResponseContextStore.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/FutureResponseContextStoreImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/FutureResponseContextStoreImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/JsonObjectMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/JsonObjectMapper.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/OcppWebSocketHandshakeHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/OcppWebSocketHandshakeHandler.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/PingTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/PingTask.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/SessionContextStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/SessionContextStore.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/SessionContextStoreHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/SessionContextStoreHolder.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/SessionContextStoreImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/SessionContextStoreImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/TypeStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/TypeStore.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/WebSocketLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/WebSocketLogger.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/CustomStringModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/CustomStringModule.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/EnumMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/EnumMixin.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/EnumProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/EnumProcessor.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/MeterValue15Deserializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/MeterValue15Deserializer.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/MeterValue15Mixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/MeterValue15Mixin.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/WsSessionSelectStrategy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/WsSessionSelectStrategy.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/WsSessionSelectStrategyEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/custom/WsSessionSelectStrategyEnum.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/data/ActionResponsePair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/data/ActionResponsePair.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/data/CommunicationContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/data/CommunicationContext.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/data/ErrorCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/data/ErrorCode.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/data/FutureResponseContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/data/FutureResponseContext.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/data/MessageType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/data/MessageType.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/data/OcppJsonCall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/data/OcppJsonCall.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/data/OcppJsonError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/data/OcppJsonError.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/data/OcppJsonMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/data/OcppJsonMessage.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/data/OcppJsonResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/data/OcppJsonResponse.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/data/OcppJsonResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/data/OcppJsonResult.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/data/SessionContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/data/SessionContext.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp12/Ocpp12JacksonModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp12/Ocpp12JacksonModule.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp12/Ocpp12TypeStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp12/Ocpp12TypeStore.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp12/Ocpp12WebSocketEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp12/Ocpp12WebSocketEndpoint.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp15/Ocpp15JacksonModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp15/Ocpp15JacksonModule.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp15/Ocpp15TypeStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp15/Ocpp15TypeStore.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp15/Ocpp15WebSocketEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp15/Ocpp15WebSocketEndpoint.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp16/Ocpp16JacksonModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp16/Ocpp16JacksonModule.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp16/Ocpp16TypeStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp16/Ocpp16TypeStore.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp16/Ocpp16WebSocketEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/ocpp16/Ocpp16WebSocketEndpoint.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/pipeline/Deserializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/pipeline/Deserializer.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/pipeline/IncomingPipeline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/pipeline/IncomingPipeline.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/pipeline/OcppCallHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/pipeline/OcppCallHandler.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/pipeline/OutgoingCallPipeline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/pipeline/OutgoingCallPipeline.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/pipeline/Sender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/pipeline/Sender.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/ocpp/ws/pipeline/Serializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/ocpp/ws/pipeline/Serializer.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/AddressRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/AddressRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/CertificateRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/CertificateRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/ChargePointRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/ChargePointRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/ChargingProfileRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/ChargingProfileRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/DataImportExportRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/DataImportExportRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/EventRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/EventRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/GenericRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/GenericRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/OcppServerRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/OcppServerRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/OcppTagRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/OcppTagRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/ReservationRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/ReservationRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/ReservationStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/ReservationStatus.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/SettingsRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/SettingsRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/TaskStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/TaskStore.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/TransactionRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/TransactionRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/UserRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/WebUserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/WebUserRepository.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/ChargePoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/ChargePoint.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/ChargePointRegistration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/ChargePointRegistration.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/ChargePointSelect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/ChargePointSelect.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/ChargingProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/ChargingProfile.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/ChargingProfileAssignment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/ChargingProfileAssignment.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/ConnectorStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/ConnectorStatus.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/DbVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/DbVersion.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/InsertConnectorStatusParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/InsertConnectorStatusParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/InsertReservationParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/InsertReservationParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/InsertTransactionParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/InsertTransactionParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/InstalledCertificate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/InstalledCertificate.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/OcppTag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/OcppTag.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/Reservation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/Reservation.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/SecurityEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/SecurityEvent.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/StatusEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/StatusEvent.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/TaskOverview.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/TaskOverview.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/Transaction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/Transaction.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/TransactionDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/TransactionDetails.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/TransactionStatusUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/TransactionStatusUpdate.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/UpdateChargeboxParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/UpdateChargeboxParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/UpdateTransactionParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/UpdateTransactionParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/dto/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/dto/User.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/AddressRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/AddressRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/CertificateRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/CertificateRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/ChargePointRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/ChargePointRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/ChargingProfileRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/ChargingProfileRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/DataImportExportRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/DataImportExportRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/EventRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/EventRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/GenericRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/GenericRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/OcppServerRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/OcppServerRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/OcppTagRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/OcppTagRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/RepositoryUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/RepositoryUtils.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/ReservationRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/ReservationRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/SettingsRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/SettingsRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/TaskStoreImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/TaskStoreImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/TransactionRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/TransactionRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/UserRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/UserRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/repository/impl/WebUserRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/repository/impl/WebUserRepositoryImpl.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/AuthTagService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/AuthTagService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/AuthTagServiceLocal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/AuthTagServiceLocal.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/BackgroundService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/BackgroundService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/CentralSystemService16_Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/CentralSystemService16_Service.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/CertificateSigningService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/CertificateSigningService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/CertificateSigningServiceAbstract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/CertificateSigningServiceAbstract.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/CertificateSigningServiceLocal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/CertificateSigningServiceLocal.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/CertificateValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/CertificateValidator.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/ChargePointService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/ChargePointService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/ChargePointServiceClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/ChargePointServiceClient.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/DataImportExportService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/DataImportExportService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/DummyReleaseCheckService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/DummyReleaseCheckService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/GithubReleaseCheckService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/GithubReleaseCheckService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/MailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/MailService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/MailServiceDefault.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/MailServiceDefault.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/NotificationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/NotificationService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/NotificationServiceForUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/NotificationServiceForUser.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/OcppTagService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/OcppTagService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/ReleaseCheckService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/ReleaseCheckService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/TransactionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/TransactionService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/UnidentifiedIncomingObjectService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/UnidentifiedIncomingObjectService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/UserService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/WebUserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/WebUserService.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/dto/UnidentifiedIncomingObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/dto/UnidentifiedIncomingObject.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/notification/OccpStationBooted.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/notification/OccpStationBooted.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/notification/OcppStationStatusFailure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/notification/OcppStationStatusFailure.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/notification/OcppStationStatusSuspendedEV.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/notification/OcppStationStatusSuspendedEV.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/notification/OcppStationWebSocketConnected.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/notification/OcppStationWebSocketConnected.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/notification/OcppStationWebSocketDisconnected.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/notification/OcppStationWebSocketDisconnected.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/notification/OcppTransactionEnded.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/notification/OcppTransactionEnded.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/service/notification/OcppTransactionStarted.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/service/notification/OcppTransactionStarted.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/CertificateUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/CertificateUtils.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/ConnectorStatusCountFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/ConnectorStatusCountFilter.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/ConnectorStatusFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/ConnectorStatusFilter.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/ControllerHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/ControllerHelper.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/CountryCodesProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/CountryCodesProvider.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/CustomDSL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/CustomDSL.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/DateConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/DateConverter.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/DateTimeConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/DateTimeConverter.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/DateTimeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/DateTimeUtils.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/InternetChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/InternetChecker.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/LogFileRetriever.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/LogFileRetriever.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/OcppTagActivityRecordUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/OcppTagActivityRecordUtils.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/StringUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/StringUtils.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/TransactionStopServiceHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/TransactionStopServiceHelper.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/mapper/AddressMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/mapper/AddressMapper.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/mapper/ChargePointDetailsMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/mapper/ChargePointDetailsMapper.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/mapper/ChargingProfileDetailsMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/mapper/ChargingProfileDetailsMapper.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/mapper/OcppTagFormMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/mapper/OcppTagFormMapper.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/utils/mapper/UserFormMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/utils/mapper/UserFormMapper.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/BatchInsertConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/BatchInsertConverter.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/ChargePointSelectEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/ChargePointSelectEditor.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/DateTimeEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/DateTimeEditor.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/GlobalControllerAdvice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/GlobalControllerAdvice.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/LocalDateEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/LocalDateEditor.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/api/ApiControllerAdvice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/api/ApiControllerAdvice.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/api/OcppTagsRestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/api/OcppTagsRestController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/api/TransactionsRestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/api/TransactionsRestController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/AboutSettingsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/AboutSettingsController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/AjaxCallController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/AjaxCallController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/CertificatesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/CertificatesController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/ChargePointsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/ChargePointsController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/ChargingProfilesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/ChargingProfilesController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/EventsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/EventsController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/HomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/HomeController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/LogController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/LogController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/Ocpp12Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/Ocpp12Controller.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/Ocpp15Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/Ocpp15Controller.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/Ocpp16Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/Ocpp16Controller.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/Ocpp16ImprovedSecurityController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/Ocpp16ImprovedSecurityController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/OcppTagsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/OcppTagsController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/RootRedirectController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/RootRedirectController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/SignInOutController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/SignInOutController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/TaskController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/TaskController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/TransactionsReservationsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/TransactionsReservationsController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/controller/UsersController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/controller/UsersController.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/Address.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/Address.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/BooleanType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/BooleanType.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ChargePointBatchInsertForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ChargePointBatchInsertForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ChargePointForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ChargePointForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ChargePointQueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ChargePointQueryForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ChargingProfileAssignmentQueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ChargingProfileAssignmentQueryForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ChargingProfileForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ChargingProfileForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ChargingProfileQueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ChargingProfileQueryForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ConnectorStatusForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ConnectorStatusForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/DataExportForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/DataExportForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/EndpointInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/EndpointInfo.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/InstalledCertificateQueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/InstalledCertificateQueryForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/OcppJsonStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/OcppJsonStatus.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/OcppTagBatchInsertForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/OcppTagBatchInsertForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/OcppTagForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/OcppTagForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/OcppTagQueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/OcppTagQueryForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/QueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/QueryForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/QueryPeriodFromToFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/QueryPeriodFromToFilter.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/QueryPeriodType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/QueryPeriodType.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/QueryPeriodTypeFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/QueryPeriodTypeFilter.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ReleaseReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ReleaseReport.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ReleaseResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ReleaseResponse.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ReservationQueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ReservationQueryForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/SecurityEventsQueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/SecurityEventsQueryForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/SettingsForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/SettingsForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/SignedCertificateQueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/SignedCertificateQueryForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/Statistics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/Statistics.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/StatusEventType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/StatusEventType.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/StatusEventsQueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/StatusEventsQueryForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/TransactionQueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/TransactionQueryForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/UserForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/UserForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/UserQueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/UserQueryForm.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/UserSex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/UserSex.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/AvailabilityType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/AvailabilityType.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/CancelReservationParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/CancelReservationParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/CertificateSignedParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/CertificateSignedParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ChangeAvailabilityParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ChangeAvailabilityParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ChangeConfigurationParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ChangeConfigurationParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ChargePointSelection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ChargePointSelection.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ClearChargingProfileFilterType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ClearChargingProfileFilterType.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ClearChargingProfileParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ClearChargingProfileParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ConfigurationKeyEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ConfigurationKeyEnum.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ConfigurationKeyReadWriteEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ConfigurationKeyReadWriteEnum.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/DataTransferParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/DataTransferParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/DeleteCertificateParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/DeleteCertificateParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ExtendedTriggerMessageParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ExtendedTriggerMessageParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/GetCompositeScheduleParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/GetCompositeScheduleParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/GetConfigurationParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/GetConfigurationParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/GetDiagnosticsParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/GetDiagnosticsParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/GetInstalledCertificateIdsParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/GetInstalledCertificateIdsParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/GetLogParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/GetLogParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/InstallCertificateParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/InstallCertificateParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/MultipleChargePointSelect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/MultipleChargePointSelect.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/RemoteStartTransactionParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/RemoteStartTransactionParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/RemoteStopTransactionParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/RemoteStopTransactionParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ReserveNowParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ReserveNowParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ResetParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ResetParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ResetType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/ResetType.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/SendLocalListParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/SendLocalListParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/SendLocalListUpdateType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/SendLocalListUpdateType.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/SetChargingProfileParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/SetChargingProfileParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/SignedUpdateFirmwareParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/SignedUpdateFirmwareParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/SingleChargePointSelect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/SingleChargePointSelect.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/TriggerMessageEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/TriggerMessageEnum.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/TriggerMessageParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/TriggerMessageParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/UnlockConnectorParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/UnlockConnectorParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/dto/ocpp/UpdateFirmwareParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/dto/ocpp/UpdateFirmwareParams.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/validation/ChargeBoxId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/validation/ChargeBoxId.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/validation/ChargeBoxIdListValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/validation/ChargeBoxIdListValidator.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/validation/ChargeBoxIdValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/validation/ChargeBoxIdValidator.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/validation/EmailCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/validation/EmailCollection.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/validation/EmailCollectionValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/validation/EmailCollectionValidator.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/validation/IdTag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/validation/IdTag.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/validation/IdTagListValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/validation/IdTagListValidator.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/validation/IdTagValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/validation/IdTagValidator.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/validation/SecurityProfileValid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/validation/SecurityProfileValid.java -------------------------------------------------------------------------------- /src/main/java/de/rwth/idsg/steve/web/validation/SecurityProfileValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/java/de/rwth/idsg/steve/web/validation/SecurityProfileValidator.java -------------------------------------------------------------------------------- /src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/application-dev.properties -------------------------------------------------------------------------------- /src/main/resources/application-docker.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/application-docker.properties -------------------------------------------------------------------------------- /src/main/resources/application-kubernetes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/application-kubernetes.properties -------------------------------------------------------------------------------- /src/main/resources/application-prod.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/application-prod.properties -------------------------------------------------------------------------------- /src/main/resources/application-test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/application-test.properties -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/main/resources/db/migration/B1_0_5__stevedb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/B1_0_5__stevedb.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_6_6__inital.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_6_6__inital.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_6_7__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_6_7__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_6_8__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_6_8__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_6_9__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_6_9__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_7_0__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_7_0__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_7_1__update.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE `dbVersion`; 2 | -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_7_2__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_7_2__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_7_3__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_7_3__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_7_6__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_7_6__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_7_7__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_7_7__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_7_8__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_7_8__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_7_9__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_7_9__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_8_0__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_8_0__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_8_1__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_8_1__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_8_2__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_8_2__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_8_4__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_8_4__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_8_5__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_8_5__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_8_6__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_8_6__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_8_7__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_8_7__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_8_8__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_8_8__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_8_9__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_8_9__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_9_0__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_9_0__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_9_1__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_9_1__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_9_2__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_9_2__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_9_3__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_9_3__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_9_4__update.sql: -------------------------------------------------------------------------------- 1 | DROP PROCEDURE `get_stats`; 2 | -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_9_5__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_9_5__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_9_6__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_9_6__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_9_7__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_9_7__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_9_8__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_9_8__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0_9_9__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V0_9_9__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V1_0_0__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V1_0_0__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V1_0_1__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V1_0_1__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V1_0_2__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V1_0_2__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V1_0_3__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V1_0_3__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V1_0_4__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V1_0_4__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V1_0_5__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V1_0_5__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V1_0_6__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V1_0_6__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V1_0_7__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V1_0_7__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V1_0_8__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V1_0_8__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V1_0_9__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V1_0_9__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V1_1_0__update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V1_1_0__update.sql -------------------------------------------------------------------------------- /src/main/resources/db/migration/V1_1_1__ocpp16_security.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/db/migration/V1_1_1__ocpp16_security.sql -------------------------------------------------------------------------------- /src/main/resources/logback-spring-dev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/logback-spring-dev.xml -------------------------------------------------------------------------------- /src/main/resources/logback-spring-docker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/logback-spring-docker.xml -------------------------------------------------------------------------------- /src/main/resources/logback-spring-prod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/logback-spring-prod.xml -------------------------------------------------------------------------------- /src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/00-context.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/00-context.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/00-cp-multiple.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/00-cp-multiple.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/00-cp-single.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/00-cp-single.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/00-error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/00-error.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/00-footer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/00-footer.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/00-header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/00-header.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/00-op-bind-errors.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/00-op-bind-errors.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/GetConfigurationResponse.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/GetConfigurationResponse.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/about.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/connectorStatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/connectorStatus.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/00-address.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/00-address.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/00-charging-profile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/00-charging-profile.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/00-cp-misc.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/00-cp-misc.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/00-ocppTag.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/00-ocppTag.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/00-user-ocpp.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/00-user-ocpp.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/00-user-profile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/00-user-profile.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/chargepointAdd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/chargepointAdd.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/chargepointDetails.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/chargepointDetails.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/chargepoints.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/chargepoints.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/chargingProfileAdd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/chargingProfileAdd.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/chargingProfileAssignments.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/chargingProfileAssignments.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/chargingProfileDetails.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/chargingProfileDetails.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/chargingProfiles.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/chargingProfiles.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/ocppTagAdd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/ocppTagAdd.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/ocppTagDetails.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/ocppTagDetails.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/ocppTags.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/ocppTags.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/reservations.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/reservations.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/transactionDetails.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/transactionDetails.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/transactions.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/transactions.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/userAdd.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/userAdd.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/userDetails.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/userDetails.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/data-man/users.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/data-man/users.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/events-certs/certificatesInstalled.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/events-certs/certificatesInstalled.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/events-certs/certificatesSigned.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/events-certs/certificatesSigned.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/events-certs/securityEvents.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/events-certs/securityEvents.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/events-certs/statusEventJobDetails.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/events-certs/statusEventJobDetails.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/events-certs/statusEvents.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/events-certs/statusEvents.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/home.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/ocppJsonStatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/ocppJsonStatus.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/CancelReservationForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/CancelReservationForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/ChangeAvailabilityForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/ChangeAvailabilityForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/ChangeConfigurationForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/ChangeConfigurationForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/ClearCacheForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/ClearCacheForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/ClearChargingProfileForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/ClearChargingProfileForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/DataTransferForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/DataTransferForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/ExtendedTriggerMessageForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/ExtendedTriggerMessageForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/GetCompositeScheduleForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/GetCompositeScheduleForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/GetConfigurationForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/GetConfigurationForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/GetDiagnosticsForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/GetDiagnosticsForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/GetInstalledCertificateIds.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/GetInstalledCertificateIds.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/GetLocalListForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/GetLocalListForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/GetLogForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/GetLogForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/InstallCertificateForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/InstallCertificateForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/RemoteStartTransactionForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/RemoteStartTransactionForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/RemoteStopTransactionForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/RemoteStopTransactionForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/ReserveNowForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/ReserveNowForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/ResetForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/ResetForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/SendLocalListForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/SendLocalListForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/SetChargingProfileForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/SetChargingProfileForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/SignedUpdateFirmwareForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/SignedUpdateFirmwareForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/TriggerMessageForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/TriggerMessageForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/UnlockConnectorForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/UnlockConnectorForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op-forms/UpdateFirmwareForm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op-forms/UpdateFirmwareForm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op12/ChangeAvailability.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op12/ChangeAvailability.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op12/ChangeConfiguration.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op12/ChangeConfiguration.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op12/ClearCache.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op12/ClearCache.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op12/GetDiagnostics.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op12/GetDiagnostics.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op12/RemoteStartTransaction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op12/RemoteStartTransaction.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op12/RemoteStopTransaction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op12/RemoteStopTransaction.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op12/Reset.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op12/Reset.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op12/UnlockConnector.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op12/UnlockConnector.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op12/UpdateFirmware.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op12/UpdateFirmware.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/CancelReservation.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/CancelReservation.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/ChangeAvailability.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/ChangeAvailability.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/ChangeConfiguration.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/ChangeConfiguration.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/ClearCache.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/ClearCache.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/DataTransfer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/DataTransfer.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/GetConfiguration.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/GetConfiguration.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/GetDiagnostics.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/GetDiagnostics.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/GetLocalListVersion.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/GetLocalListVersion.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/RemoteStartTransaction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/RemoteStartTransaction.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/RemoteStopTransaction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/RemoteStopTransaction.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/ReserveNow.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/ReserveNow.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/Reset.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/Reset.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/SendLocalList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/SendLocalList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/UnlockConnector.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/UnlockConnector.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op15/UpdateFirmware.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op15/UpdateFirmware.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/00-op16-left-menu.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/00-op16-left-menu.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/CancelReservation.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/CancelReservation.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/ChangeAvailability.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/ChangeAvailability.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/ChangeConfiguration.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/ChangeConfiguration.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/ClearCache.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/ClearCache.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/ClearChargingProfile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/ClearChargingProfile.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/DataTransfer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/DataTransfer.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/ExtendedTriggerMessage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/ExtendedTriggerMessage.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/GetCompositeSchedule.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/GetCompositeSchedule.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/GetCompositeScheduleResponse.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/GetCompositeScheduleResponse.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/GetConfiguration.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/GetConfiguration.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/GetDiagnostics.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/GetDiagnostics.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/GetInstalledCertificateIds.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/GetInstalledCertificateIds.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/GetLocalListVersion.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/GetLocalListVersion.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/GetLog.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/GetLog.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/InstallCertificate.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/InstallCertificate.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/RemoteStartTransaction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/RemoteStartTransaction.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/RemoteStopTransaction.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/RemoteStopTransaction.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/ReserveNow.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/ReserveNow.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/Reset.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/Reset.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/SendLocalList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/SendLocalList.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/SetChargingProfile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/SetChargingProfile.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/SignedUpdateFirmware.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/SignedUpdateFirmware.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/TriggerMessage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/TriggerMessage.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/UnlockConnector.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/UnlockConnector.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/op16/UpdateFirmware.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/op16/UpdateFirmware.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/settings.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/settings.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/signin.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/signin.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/clearChargingProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/clearChargingProfile.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/confKeySelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/confKeySelect.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/datePicker-past.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/datePicker-past.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/dateTimePicker-future.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/dateTimePicker-future.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/dateTimePicker-past.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/dateTimePicker-past.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/dateTimePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/dateTimePicker.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/getConnectorIds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/getConnectorIds.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/getConnectorIdsZeroAllowed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/getConnectorIdsZeroAllowed.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/getReservationIds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/getReservationIds.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/getTransactionIds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/getTransactionIds.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/periodTypeSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/periodTypeSelect.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/schedulePeriodsTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/schedulePeriodsTable.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/sendLocalList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/sendLocalList.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippets/sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/snippets/sortable.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/taskResult.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/taskResult.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/tasks.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/views/tasks.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/static/css/DroidSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/DroidSerif.ttf -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/static/css/jquery-ui-timepicker-addon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/jquery-ui-timepicker-addon.min.css -------------------------------------------------------------------------------- /src/main/webapp/static/css/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/jquery-ui.min.css -------------------------------------------------------------------------------- /src/main/webapp/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/css/style.css -------------------------------------------------------------------------------- /src/main/webapp/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/images/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/static/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/images/info.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/images/logo.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/images/logo2.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/offline-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/images/offline-icon.svg -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery-2.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/js/jquery-2.0.3.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery-ui-timepicker-addon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/js/jquery-ui-timepicker-addon.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/js/script.js -------------------------------------------------------------------------------- /src/main/webapp/static/js/stupidtable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/main/webapp/static/js/stupidtable.min.js -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/ApplicationJsonTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/ApplicationJsonTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/ApplicationTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/OperationalSoapOCPP16Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/OperationalSoapOCPP16Test.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/StressTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/StressTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/StressTestJsonOCPP16.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/StressTestJsonOCPP16.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/StressTestSoapOCPP16.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/StressTestSoapOCPP16.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/TypeStoreTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/TypeStoreTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/issues/Issue1219.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/issues/Issue1219.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/issues/Issue72.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/issues/Issue72.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/issues/Issue72LowLevelSoap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/issues/Issue72LowLevelSoap.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/issues/Issue73FixTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/issues/Issue73FixTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/issues/Issue81.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/issues/Issue81.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/ocpp/OcppProtocolTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/ocpp/OcppProtocolTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/ocpp/OcppVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/ocpp/OcppVersionTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/ocpp/task/ChangeConfigurationTaskTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/ocpp/task/ChangeConfigurationTaskTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/ocpp/ws/custom/CustomStringModuleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/ocpp/ws/custom/CustomStringModuleTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/service/UserServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/service/UserServiceTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/utils/ConnectorStatusFilterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/utils/ConnectorStatusFilterTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/utils/Helpers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/utils/Helpers.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/utils/OcppJsonChargePoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/utils/OcppJsonChargePoint.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/utils/StressTester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/utils/StressTester.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/utils/StringUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/utils/StringUtilsTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/utils/TransactionStopServiceHelperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/utils/TransactionStopServiceHelperTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/utils/__DatabasePreparer__.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/utils/__DatabasePreparer__.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/web/DateTimeEditorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/web/DateTimeEditorTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/web/api/AbstractControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/web/api/AbstractControllerTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/web/api/OcppTagsRestControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/web/api/OcppTagsRestControllerTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/web/api/TransactionRestControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/web/api/TransactionRestControllerTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/web/validation/ChargeBoxIdValidatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/web/validation/ChargeBoxIdValidatorTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/web/validation/IdTagValidatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/web/validation/IdTagValidatorTest.java -------------------------------------------------------------------------------- /src/test/java/de/rwth/idsg/steve/web/validation/SecurityProfileValidatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/src/test/java/de/rwth/idsg/steve/web/validation/SecurityProfileValidatorTest.java -------------------------------------------------------------------------------- /website/logo/managed-by-steve.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/logo/managed-by-steve.pdf -------------------------------------------------------------------------------- /website/screenshots/certiticates-installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/certiticates-installed.png -------------------------------------------------------------------------------- /website/screenshots/certiticates-signed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/certiticates-signed.png -------------------------------------------------------------------------------- /website/screenshots/chargepoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/chargepoints.png -------------------------------------------------------------------------------- /website/screenshots/charging-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/charging-profiles.png -------------------------------------------------------------------------------- /website/screenshots/connector-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/connector-status.png -------------------------------------------------------------------------------- /website/screenshots/events-security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/events-security.png -------------------------------------------------------------------------------- /website/screenshots/events-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/events-status.png -------------------------------------------------------------------------------- /website/screenshots/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/home.png -------------------------------------------------------------------------------- /website/screenshots/lightsail-1-create-instance.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/lightsail-1-create-instance.PNG -------------------------------------------------------------------------------- /website/screenshots/lightsail-2-static-ip.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/lightsail-2-static-ip.PNG -------------------------------------------------------------------------------- /website/screenshots/lightsail-3-firewall.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/lightsail-3-firewall.PNG -------------------------------------------------------------------------------- /website/screenshots/lightsail-4-create-database.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/lightsail-4-create-database.PNG -------------------------------------------------------------------------------- /website/screenshots/lightsail-5-check-database-status.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/lightsail-5-check-database-status.PNG -------------------------------------------------------------------------------- /website/screenshots/lightsail-6-connect-instance.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/lightsail-6-connect-instance.PNG -------------------------------------------------------------------------------- /website/screenshots/ocpp-tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/ocpp-tags.png -------------------------------------------------------------------------------- /website/screenshots/ocpp12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/ocpp12.png -------------------------------------------------------------------------------- /website/screenshots/ocpp15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/ocpp15.png -------------------------------------------------------------------------------- /website/screenshots/ocpp16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/ocpp16.png -------------------------------------------------------------------------------- /website/screenshots/reservations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/reservations.png -------------------------------------------------------------------------------- /website/screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/settings.png -------------------------------------------------------------------------------- /website/screenshots/transactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/transactions.png -------------------------------------------------------------------------------- /website/screenshots/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steve-community/steve/HEAD/website/screenshots/users.png --------------------------------------------------------------------------------