当前位置: 首页>>代码示例>>Java>>正文


Java Controller.badRequest方法代码示例

本文整理汇总了Java中play.mvc.Controller.badRequest方法的典型用法代码示例。如果您正苦于以下问题:Java Controller.badRequest方法的具体用法?Java Controller.badRequest怎么用?Java Controller.badRequest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在play.mvc.Controller的用法示例。


在下文中一共展示了Controller.badRequest方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: downloadFileAttachment

import play.mvc.Controller; //导入方法依赖的package包/类
/**
 * This method is to be integrated within a controller.<br/>
 * It looks for the specified attachment and returns it if the user is
 * allowed to access it.
 * 
 * @param attachmentId
 *            the id of an attachment
 * @param attachmentManagerPlugin
 *            the service which is managing attachments
 * @param sessionManagerPlugin
 *            the service which is managing user sessions
 * @return the attachment as a stream
 */
public static Result downloadFileAttachment(Long attachmentId, IAttachmentManagerPlugin attachmentManagerPlugin,
        IUserSessionManagerPlugin sessionManagerPlugin) {
    @SuppressWarnings("unchecked")
    Set<Long> allowedIds = (Set<Long>) Cache
            .get(IFrameworkConstants.ATTACHMENT_READ_AUTHZ_CACHE_PREFIX + sessionManagerPlugin.getUserSessionId(Controller.ctx()));
    if (allowedIds != null && allowedIds.contains(attachmentId)) {
        try {
            Attachment attachment = attachmentManagerPlugin.getAttachmentFromId(attachmentId);

            if (attachment.mimeType.equals(FileAttachmentHelper.FileType.URL.name())) {
                return Controller.redirect(attachment.path);
            } else {
                Controller.response().setHeader("Content-Disposition", "attachment; filename=\"" + attachment.name + "\"");
                return Controller.ok(attachmentManagerPlugin.getAttachmentContent(attachmentId));
            }
        } catch (IOException e) {
            log.error("Error while retreiving the attachment content for " + attachmentId);
            return Controller.badRequest();
        }
    }
    return Controller.badRequest();
}
 
开发者ID:theAgileFactory,项目名称:app-framework,代码行数:36,代码来源:FileAttachmentHelper.java

示例2: deleteFileAttachment

import play.mvc.Controller; //导入方法依赖的package包/类
/**
 * This method is to be integrated within a controller.<br/>
 * It looks for the specified attachment and delete it if the user is
 * allowed to erase it.<br/>
 * It is to be called by an AJAX GET with a single attribute : the id of the
 * attachment.
 *
 * @param attachmentId
 *            the id of an attachment
 * @param attachmentManagerPlugin
 *            the service which is managing attachments
 * @param sessionManagerPlugin
 *            the service which is managing user sessions
 * @return the result
 */
public static Result deleteFileAttachment(Long attachmentId, IAttachmentManagerPlugin attachmentManagerPlugin,
        IUserSessionManagerPlugin sessionManagerPlugin) {
    @SuppressWarnings("unchecked")
    Set<Long> allowedIds = (Set<Long>) Cache
            .get(IFrameworkConstants.ATTACHMENT_WRITE_AUTHZ_CACHE_PREFIX + sessionManagerPlugin.getUserSessionId(Controller.ctx()));
    if (allowedIds != null && allowedIds.contains(attachmentId)) {
        try {
            attachmentManagerPlugin.deleteAttachment(attachmentId);
            return Controller.ok();
        } catch (IOException e) {
            log.error("Error while deleting the attachment content for " + attachmentId);
            return Controller.badRequest();
        }
    }
    return Controller.badRequest();
}
 
开发者ID:theAgileFactory,项目名称:app-framework,代码行数:32,代码来源:FileAttachmentHelper.java

示例3: handle

import play.mvc.Controller; //导入方法依赖的package包/类
public Result handle(Request request) {
    JsonNode json = request.body().asJson();
    String requestType = json.get("requestType").asText();
    switch (RequestType.valueOf(requestType)) {
    case CONFIG:
        return getConfigResponse();
    case INIT:
        return getInitialValueResponse(json);
    case SEARCH:
        return getSearchResponse(json);
    }
    return Controller.badRequest();
}
 
开发者ID:theAgileFactory,项目名称:app-framework,代码行数:14,代码来源:PickerHandler.java

示例4: displayAccessForbidden

import play.mvc.Controller; //导入方法依赖的package包/类
@Override
public Result displayAccessForbidden() {
    return Controller.badRequest(views.html.error.access_forbidden.render(getMessagesPlugins().get("forbidden.access.title")));
}
 
开发者ID:theAgileFactory,项目名称:maf-desktop-app,代码行数:5,代码来源:SecurityServiceImpl.java


注:本文中的play.mvc.Controller.badRequest方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。