Interface LoggerClient
-
@Produces("application/json") @Consumes("application/json") public interface LoggerClient
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(List<ComponentUpgradeDTO> componentUpgrades)List<ComponentUpgradeDTO>getAll(String project)ComponentUpgradeDTOgetFirst(String project, String groupId, String artifactId, String newVersion)
-
-
-
Method Detail
-
getAll
@GET @Path("/component-upgrades/{project}") List<ComponentUpgradeDTO> getAll(@PathParam("project") String project)
-
getFirst
@GET @Path("/component-upgrades/{project}/{groupId}/{artifactId}/{newVersion}") ComponentUpgradeDTO getFirst(@PathParam("project") String project, @PathParam("groupId") String groupId, @PathParam("artifactId") String artifactId, @PathParam("newVersion") String newVersion) throws UpgradeNotFoundException- Throws:
UpgradeNotFoundException
-
create
@POST @Path("/component-upgrades/") void create(List<ComponentUpgradeDTO> componentUpgrades)
-
-