File tree Expand file tree Collapse file tree 3 files changed +9
-67
lines changed
openespi-common/src/main/java/org/greenbuttonalliance/espi/common/service Expand file tree Collapse file tree 3 files changed +9
-67
lines changed Original file line number Diff line number Diff line change 2020package org .greenbuttonalliance .espi .common .service ;
2121
2222
23- import com . sun . syndication . io . FeedException ;
23+ import jakarta . xml . bind . JAXBException ;
2424import org .greenbuttonalliance .espi .common .domain .usage .RetailCustomerEntity ;
2525import org .greenbuttonalliance .espi .common .domain .usage .SubscriptionEntity ;
2626import org .greenbuttonalliance .espi .common .domain .usage .UsagePointEntity ;
@@ -48,15 +48,15 @@ public interface UsagePointService {
4848
4949 List <Long > findAllIdsForRetailCustomer (Long id );
5050
51- String feedFor (List <UsagePointEntity > usagePoints ) throws FeedException ;
51+ String feedFor (List <UsagePointEntity > usagePoints ) throws JAXBException ;
5252
5353 String entryFor (UsagePointEntity usagePoint );
5454
5555 List <UsagePointEntity > findAllByRetailCustomer (Long retailCustomerId );
5656
5757 void setRepository (UsagePointRepository usagePointRepository );
5858
59- void setResourceService (ResourceService resourceService );
59+ // void setResourceService(ResourceService resourceService); // Removed for Spring Boot 3.5 migration
6060
6161 UsagePointEntity save (UsagePointEntity usagePoint );
6262
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1919
2020package org .greenbuttonalliance .espi .common .service .impl ;
2121
22- import com . sun . syndication . io . FeedException ;
22+ import jakarta . xml . bind . JAXBException ;
2323import org .greenbuttonalliance .espi .common .domain .usage .RetailCustomerEntity ;
2424import org .greenbuttonalliance .espi .common .domain .usage .SubscriptionEntity ;
2525import org .greenbuttonalliance .espi .common .domain .usage .UsagePointEntity ;
@@ -63,10 +63,10 @@ public void setRepository(UsagePointRepository usagePointRepository) {
6363 // Repository is injected via constructor
6464 }
6565
66- @ Override
67- public void setResourceService (ResourceService resourceService ) {
68- // ResourceService is no longer used - method kept for interface compatibility
69- }
66+ // @Override
67+ // public void setResourceService(ResourceService resourceService) {
68+ // // ResourceService is no longer used - removed for Spring Boot 3.5 migration
69+ // }
7070
7171 @ Override
7272 public List <UsagePointEntity > findAllByRetailCustomer (RetailCustomerEntity customer ) {
@@ -141,7 +141,7 @@ public List<Long> findAllIdsForRetailCustomer(Long id) {
141141 }
142142
143143 @ Override
144- public String feedFor (List <UsagePointEntity > usagePoints ) throws FeedException {
144+ public String feedFor (List <UsagePointEntity > usagePoints ) throws JAXBException {
145145 // TODO: Implement modern feed generation using DTOs
146146 logger .info ("Generating feed for " + usagePoints .size () + " usage points" );
147147 return null ;
You can’t perform that action at this time.
0 commit comments