Remove @NoCache annotation in admin client interfaces (#32795)

Closes #32731

Signed-off-by: stianst <stianst@gmail.com>
(cherry picked from commit e140e71a52dec87bf632a5cb9787e48fff975da6)
This commit is contained in:
Stian Thorgersen 2024-09-11 15:15:34 +02:00 committed by GitHub
parent 19e557daab
commit 109db4fe7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,8 +23,6 @@ import jakarta.ws.rs.GET;
import jakarta.ws.rs.PUT;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import org.jboss.resteasy.annotations.cache.NoCache;
import org.keycloak.representations.idm.ClientTypesRepresentation;
/**
@ -33,7 +31,6 @@ import org.keycloak.representations.idm.ClientTypesRepresentation;
public interface ClientTypesResource {
@GET
@NoCache
@Produces(MediaType.APPLICATION_JSON)
ClientTypesRepresentation getClientTypes();