Search in sources :

Example 1 with BannerEntity

use of org.apache.nifi.web.api.entity.BannerEntity in project nifi by apache.

the class FlowResource method getBanners.

/**
 * Retrieves the banners for this NiFi.
 *
 * @return A bannerEntity.
 */
@GET
@Consumes(MediaType.WILDCARD)
@Produces(MediaType.APPLICATION_JSON)
@Path("banners")
@ApiOperation(value = "Retrieves the banners for this NiFi", response = BannerEntity.class, authorizations = { @Authorization(value = "Read - /flow") })
@ApiResponses(value = { @ApiResponse(code = 400, message = "NiFi was unable to complete the request because it was invalid. The request should not be retried without modification."), @ApiResponse(code = 401, message = "Client could not be authenticated."), @ApiResponse(code = 403, message = "Client is not authorized to make this request."), @ApiResponse(code = 409, message = "The request was valid but NiFi was not in the appropriate state to process it. Retrying the same request later may be successful.") })
public Response getBanners() {
    authorizeFlow();
    // get the banner from the properties - will come from the NCM when clustered
    final String bannerText = getProperties().getBannerText();
    // create the DTO
    final BannerDTO bannerDTO = new BannerDTO();
    bannerDTO.setHeaderText(bannerText);
    bannerDTO.setFooterText(bannerText);
    // create the response entity
    final BannerEntity entity = new BannerEntity();
    entity.setBanners(bannerDTO);
    // generate the response
    return generateOkResponse(entity).build();
}
Also used : BannerEntity(org.apache.nifi.web.api.entity.BannerEntity) BannerDTO(org.apache.nifi.web.api.dto.BannerDTO) Path(javax.ws.rs.Path) Consumes(javax.ws.rs.Consumes) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET) ApiOperation(io.swagger.annotations.ApiOperation) ApiResponses(io.swagger.annotations.ApiResponses)

Aggregations

ApiOperation (io.swagger.annotations.ApiOperation)1 ApiResponses (io.swagger.annotations.ApiResponses)1 Consumes (javax.ws.rs.Consumes)1 GET (javax.ws.rs.GET)1 Path (javax.ws.rs.Path)1 Produces (javax.ws.rs.Produces)1 BannerDTO (org.apache.nifi.web.api.dto.BannerDTO)1 BannerEntity (org.apache.nifi.web.api.entity.BannerEntity)1