JokeQueryService.java
package edu.ucsb.cs156.spring.backenddemo.services;
import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.stereotype.Service;
import org.springframework.web.client.HttpClientErrorException;
import org.springframework.web.client.RestTemplate;
@Service
public class JokeQueryService {
private final RestTemplate restTemplate;
public JokeQueryService(RestTemplateBuilder restTemplateBuilder) {
restTemplate = restTemplateBuilder.build();
}
public static final String ENDPOINT = "";
public String getJSON(String category, int numJokes) throws HttpClientErrorException {
return "";
}
}