Remove @NoCache annotation in admin client interfaces

Closes #32731

Signed-off-by: stianst <stianst@gmail.com>
This commit is contained in:
stianst 2024-09-11 08:37:44 +02:00 committed by Marek Posolda
parent b60621d819
commit e140e71a52

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();