Remove @NoCache annotation in admin client interfaces
Closes #32731 Signed-off-by: stianst <stianst@gmail.com>
This commit is contained in:
parent
b60621d819
commit
e140e71a52
1 changed files with 0 additions and 3 deletions
|
@ -23,8 +23,6 @@ import jakarta.ws.rs.GET;
|
||||||
import jakarta.ws.rs.PUT;
|
import jakarta.ws.rs.PUT;
|
||||||
import jakarta.ws.rs.Produces;
|
import jakarta.ws.rs.Produces;
|
||||||
import jakarta.ws.rs.core.MediaType;
|
import jakarta.ws.rs.core.MediaType;
|
||||||
|
|
||||||
import org.jboss.resteasy.annotations.cache.NoCache;
|
|
||||||
import org.keycloak.representations.idm.ClientTypesRepresentation;
|
import org.keycloak.representations.idm.ClientTypesRepresentation;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -33,7 +31,6 @@ import org.keycloak.representations.idm.ClientTypesRepresentation;
|
||||||
public interface ClientTypesResource {
|
public interface ClientTypesResource {
|
||||||
|
|
||||||
@GET
|
@GET
|
||||||
@NoCache
|
|
||||||
@Produces(MediaType.APPLICATION_JSON)
|
@Produces(MediaType.APPLICATION_JSON)
|
||||||
ClientTypesRepresentation getClientTypes();
|
ClientTypesRepresentation getClientTypes();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue