All Downloads are FREE. Search and download functionalities are using the official Maven repository.

se.sundsvall.petinventory.integration.petstore.PetStoreClient Maven / Gradle / Ivy

The newest version!
package se.sundsvall.petinventory.integration.petstore;

import static org.springframework.http.MediaType.APPLICATION_JSON_VALUE;
import static se.sundsvall.petinventory.integration.petstore.configuration.PetStoreConfiguration.CLIENT_ID;

import java.util.List;
import java.util.Optional;

import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;

import generated.swagger.io.petstore.Pet;
import se.sundsvall.petinventory.integration.petstore.configuration.PetStoreConfiguration;

@FeignClient(name = CLIENT_ID, url = "${integration.petstore.url}", configuration = PetStoreConfiguration.class)
public interface PetStoreClient {

	/**
	 * Fetch all pets in the pet store.
	 *
	 * @return all available pets.
	 */
	@GetMapping(path = "/pets", produces = APPLICATION_JSON_VALUE)
	List findAllPets();

	/**
	 * Fetch pet by ID.
	 *
	 * @param petId the ID of the pet.
	 * @return the pet that matches the provided ID.
	 */
	@GetMapping(path = "/pets/{petId}", produces = APPLICATION_JSON_VALUE)
	Optional findPetById(@PathVariable(value = "petId") long petId);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy