@Path(value="/deployment-patterns") @Produces(value="application/json") public class DeploymentPatternService extends Object
| Constructor and Description |
|---|
DeploymentPatternService() |
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
getAllDeploymentPatterns()
This has the implementation of the REST API for fetching all the Deployment-Patterns.
|
javax.ws.rs.core.Response |
getDeploymentPattern(String id)
This has the implementation of the REST API for fetching a Deployment-Pattern by id.
|
javax.ws.rs.core.Response |
getDeploymentPatternsWithTestInfo(String productId,
String date)
This has the implementation of the REST API for fetching Products with build history status.
|
@GET public javax.ws.rs.core.Response getAllDeploymentPatterns()
@GET
@Path(value="/{id}")
public javax.ws.rs.core.Response getDeploymentPattern(@PathParam(value="id")
String id)
@GET
@Path(value="/recent-test-info")
public javax.ws.rs.core.Response getDeploymentPatternsWithTestInfo(@QueryParam(value="productId")
String productId,
@QueryParam(value="date")
String date)
Copyright © 2019 WSO2. All rights reserved.