Interface ComponentResource
-
public interface ComponentResource- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ComponentTypeRepresentation>getSubcomponentConfig(String subtype)List of subcomponent types that are available to configure for a particular parent component.voidremove()ComponentRepresentationtoRepresentation()voidupdate(ComponentRepresentation rep)
-
-
-
Method Detail
-
toRepresentation
@GET ComponentRepresentation toRepresentation()
-
update
@PUT @Consumes("application/json") void update(ComponentRepresentation rep)
-
remove
@DELETE void remove()
-
getSubcomponentConfig
@GET @Path("sub-component-types") @Produces("application/json") List<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:
-
-