23 lines
683 B
Java
23 lines
683 B
Java
package com.vaessl.app.search;
|
|
|
|
import org.springframework.data.domain.Page;
|
|
import org.springframework.data.domain.Pageable;
|
|
import org.springframework.stereotype.Component;
|
|
import com.vaessl.app.shared.ServiceItem;
|
|
import com.vaessl.app.shared.ServiceType;
|
|
|
|
@Component
|
|
public class HomeboxAiSearchProvider implements SearchProvider {
|
|
|
|
@Override
|
|
public ServiceType getServiceType() {
|
|
return ServiceType.HOMEBOX;
|
|
}
|
|
|
|
@Override
|
|
public Page<ServiceItem> getSearchResults(SearchRequest request, Pageable pageable) {
|
|
// TODO Auto-generated method stub
|
|
throw new UnsupportedOperationException("Unimplemented method 'getSearchResults'");
|
|
}
|
|
}
|