ServiceRecipeRepository id wrong type Long (vs Integer).
Issue-ID: SO-2329
Signed-off-by: Benjamin, Max (mb388a) <mb388a@att.com>
Change-Id: Iecc07ea771f18ce832a09de8b62b31b09754f7a5
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
@RepositoryRestResource(collectionResourceRel = "serviceRecipe", path = "serviceRecipe")
-public interface ServiceRecipeRepository extends JpaRepository<ServiceRecipe, Long> {
+public interface ServiceRecipeRepository extends JpaRepository<ServiceRecipe, Integer> {
ServiceRecipe findByActionAndServiceModelUUID(String action, String serviceModelUUID);
ServiceRecipe findByAction(String action);