Interface ComponentResource
public interface ComponentResource
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
Method Summary
Modifier and TypeMethodDescriptionList<org.keycloak.representations.idm.ComponentTypeRepresentation>getSubcomponentConfig(String subtype) List of subcomponent types that are available to configure for a particular parent component.voidremove()org.keycloak.representations.idm.ComponentRepresentationvoidupdate(org.keycloak.representations.idm.ComponentRepresentation rep)
-
Method Details
-
toRepresentation
@GET org.keycloak.representations.idm.ComponentRepresentation toRepresentation() -
update
@PUT @Consumes("application/json") void update(org.keycloak.representations.idm.ComponentRepresentation rep) -
remove
@DELETE void remove() -
getSubcomponentConfig
@GET @Path("sub-component-types") @Produces("application/json") List<org.keycloak.representations.idm.ComponentTypeRepresentation> getSubcomponentConfig(@QueryParam("type") String subtype) List of subcomponent types that are available to configure for a particular parent component.- Parameters:
subtype- fully qualified name of the java class of the provider, which is subtype of this component- Returns:
-