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


Java Controller.ok方法代码示例

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


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

示例1: getInitialValueResponse

import play.mvc.Controller; //导入方法依赖的package包/类
/**
 * Return the response to a request for the initial values to be displayed
 * 
 * @return a JSON response
 */
public Result getInitialValueResponse(JsonNode json) {
    ObjectNode result = Json.newObject();

    // Get the values passed as parameters
    ArrayList<T> values = new ArrayList<T>();
    JsonNode valuesNode = json.get("values");
    if (valuesNode != null) {
        for (JsonNode node : valuesNode) {
            values.add(convertNodeToT(node));
        }
    }

    // Get context parameters
    HashMap<String, String> context = extractContextFromJsonRequest(json);

    // Create the return structure
    ISelectableValueHolderCollection<T> valueHolders = getHandle().getInitialValueHolders(values, context);
    valueHolderCollectionToJson(result, valueHolders);

    return Controller.ok(result);
}
 
开发者ID:theAgileFactory,项目名称:app-framework,代码行数:27,代码来源:PickerHandler.java

示例2: 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

示例3: 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

示例4: getConfigResponse

import play.mvc.Controller; //导入方法依赖的package包/类
/**
 * Return the response to the initial configuration
 * 
 * @return a JSON response
 */
public Result getConfigResponse() {
    ObjectNode result = Json.newObject();
    Map<PickerHandler.Parameters, String> configParameters = getHandle().config(getParameters());
    if (configParameters != null) {
        for (Parameters configParameterName : configParameters.keySet()) {
            if (configParameterName.name().endsWith(I18N_PARAMETER_SUFFIX)) {
                result.put(configParameterName.name(), Msg.get(configParameters.get(configParameterName)));
            } else {
                result.put(configParameterName.name(), configParameters.get(configParameterName));
            }
        }
    }
    return Controller.ok(result);
}
 
开发者ID:theAgileFactory,项目名称:app-framework,代码行数:20,代码来源:PickerHandler.java

示例5: getSearchResponse

import play.mvc.Controller; //导入方法依赖的package包/类
/**
 * Return the response to a request for the initial values to be displayed
 * 
 * @return a JSON response
 */
public Result getSearchResponse(JsonNode json) {
    ObjectNode result = Json.newObject();

    // Get context parameters
    HashMap<String, String> context = extractContextFromJsonRequest(json);

    ISelectableValueHolderCollection<T> valueHolders = getHandle().getFoundValueHolders(json.get("searchString").asText(), context);
    valueHolderCollectionToJson(result, valueHolders);
    return Controller.ok(result);
}
 
开发者ID:theAgileFactory,项目名称:app-framework,代码行数:16,代码来源:PickerHandler.java

示例6: getFileStreamResult

import play.mvc.Controller; //导入方法依赖的package包/类
public static Result getFileStreamResult(FileDAO dao, int fileId) {
    be.ugent.degage.db.models.File file = dao.getFile(fileId);
    if (file != null) {
        try {
            FileInputStream is = new FileInputStream(Paths.get(UPLOAD_FOLDER, file.getPath()).toFile()); //TODO: this cannot be sent with a Try-with-resources (stream already closed), check if Play disposes properly
            return file.getContentType() != null && !file.getContentType().isEmpty() ? Controller.ok(is).as(file.getContentType()) : Controller.ok(is);
        } catch (FileNotFoundException e) {
            Logger.error("Missing file: " + file.getPath());
            return Controller.notFound();
        }
    } else {
        return Controller.notFound();
    }
}
 
开发者ID:degage,项目名称:degapp,代码行数:15,代码来源:FileHelper.java

示例7: trend

import play.mvc.Controller; //导入方法依赖的package包/类
@Override
public Result trend(Context ctx) {

    String uid = ctx.request().getQueryString("kpiUid");
    Long objectId = Long.valueOf(ctx.request().getQueryString("objectId"));

    Kpi kpi = getKpi(uid);

    Date startDate = null;
    Date endDate = null;

    Triple<List<KpiData>, List<KpiData>, List<KpiData>> datas = kpi.getTrendData(objectId);
    Pair<String, List<KpiData>> staticTrendLine = kpi.getKpiRunner().getStaticTrendLine(this.getPreferenceManagerPlugin(), getScriptService(), kpi,
            objectId);

    SeriesContainer<TimeValueItem> seriesContainer = null;

    if (staticTrendLine != null || (datas.getLeft() != null && datas.getLeft().size() > 0) || (datas.getMiddle() != null && datas.getMiddle().size() > 0)
            || (datas.getRight() != null && datas.getRight().size() > 0)) {

        seriesContainer = new SeriesContainer<TimeValueItem>();

        if (datas.getLeft() != null && datas.getLeft().size() > 0) {
            addTrendSerieAndValues(seriesContainer, kpi, DataType.MAIN, datas.getLeft());
        }

        if (datas.getMiddle() != null && datas.getMiddle().size() > 0) {
            addTrendSerieAndValues(seriesContainer, kpi, DataType.ADDITIONAL1, datas.getMiddle());
        }

        if (datas.getRight() != null && datas.getRight().size() > 0) {
            addTrendSerieAndValues(seriesContainer, kpi, DataType.ADDITIONAL2, datas.getRight());
        }

        if (staticTrendLine != null) {
            framework.highcharts.data.Serie<TimeValueItem> timeSerie = new framework.highcharts.data.Serie<TimeValueItem>(
                    getMessagesPlugin().get(staticTrendLine.getLeft()));
            seriesContainer.addSerie(timeSerie);
            for (KpiData kpiData : staticTrendLine.getRight()) {
                timeSerie.add(new TimeValueItem(HighchartsUtils.convertToUTCAndClean(kpiData.timestamp), kpiData.value.doubleValue()));
            }

        }

        Pair<Date, Date> period = kpi.getKpiRunner().getTrendPeriod(this.getPreferenceManagerPlugin(), getScriptService(), kpi, objectId);
        if (period != null) {
            startDate = period.getLeft();
            endDate = period.getRight();
        }

    }

    return Controller.ok(views.html.framework_views.parts.kpi.display_kpi_trend.render(uid, seriesContainer, startDate, endDate));
}
 
开发者ID:theAgileFactory,项目名称:app-framework,代码行数:55,代码来源:KpiServiceImpl.java


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