package ch.gtache.elderscrollslegends.service.dailyrewards; import jakarta.ws.rs.GET; import jakarta.ws.rs.HeaderParam; import jakarta.ws.rs.POST; import jakarta.ws.rs.Path; import jakarta.ws.rs.Produces; @Path("/dailyrewards") public class DailyRewardsEndpoints { @Path("list") @GET @Produces("application/json") public ListRewardsResponse list(@HeaderParam("Authorization") final String authentication) { return null; } @Path("acceptReward") @POST @Produces("application/json") public AcceptRewardResponse acceptReward(@HeaderParam("Authorization") final String authentication) { return null; } }