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


Java Utilities.getId方法代码示例

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


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

示例1: call

import framework.utils.Utilities; //导入方法依赖的package包/类
@Override
public Promise<Result> call(final Http.Context ctx) throws Throwable {

    Long id = Utilities.getId(ctx);
    if (id != null) {
        BudgetBucket budgetBucket = BudgetBucketDAO.getBudgetBucketById(id);
        if (budgetBucket != null) {
            return delegate.call(ctx);
        }
    }

    return Promise.promise(new Function0<Result>() {

        public Result apply() throws Throwable {
            return play.mvc.Results.notFound(views.html.error.not_found.render(ctx.request().uri()));
        }

    });

}
 
开发者ID:theAgileFactory,项目名称:maf-desktop-app,代码行数:21,代码来源:CheckBudgetBucketExists.java

示例2: call

import framework.utils.Utilities; //导入方法依赖的package包/类
@Override
public Promise<Result> call(final Http.Context ctx) throws Throwable {

    Long id = Utilities.getId(ctx);
    if (id != null) {
        OrgUnit orgUnit = OrgUnitDao.getOrgUnitById(id);
        if (orgUnit != null) {
            return delegate.call(ctx);
        }
    }

    return Promise.promise(new Function0<Result>() {

        public Result apply() throws Throwable {
            return play.mvc.Results.notFound(views.html.error.not_found.render(ctx.request().uri()));
        }

    });

}
 
开发者ID:theAgileFactory,项目名称:maf-desktop-app,代码行数:21,代码来源:CheckOrgUnitExists.java

示例3: call

import framework.utils.Utilities; //导入方法依赖的package包/类
@Override
public Promise<Result> call(final Http.Context ctx) throws Throwable {

    Long id = Utilities.getId(ctx);
    if (id != null) {
        TimesheetReport report = TimesheetDao.getTimesheetReportById(id);

        if (report != null) {
            return delegate.call(ctx);
        }
    }

    return Promise.promise(new Function0<Result>() {

        public Result apply() throws Throwable {
            return play.mvc.Results.notFound(views.html.error.not_found.render(ctx.request().uri()));
        }

    });

}
 
开发者ID:theAgileFactory,项目名称:maf-desktop-app,代码行数:22,代码来源:CheckTimesheetReportExists.java

示例4: call

import framework.utils.Utilities; //导入方法依赖的package包/类
@Override
public Promise<Result> call(final Http.Context ctx) throws Throwable {

    Long id = Utilities.getId(ctx);
    if (id != null) {
        PortfolioEntry portfolioEntry = PortfolioEntryDao.getPEById(id);
        if (portfolioEntry != null) {
            return delegate.call(ctx);
        }
    }

    return Promise.promise(new Function0<Result>() {

        public Result apply() throws Throwable {
            return play.mvc.Results.notFound(views.html.error.not_found.render(ctx.request().uri()));
        }

    });

}
 
开发者ID:theAgileFactory,项目名称:maf-desktop-app,代码行数:21,代码来源:CheckPortfolioEntryExists.java

示例5: call

import framework.utils.Utilities; //导入方法依赖的package包/类
@Override
public Promise<Result> call(final Http.Context ctx) throws Throwable {

    Long id = Utilities.getId(ctx);
    if (id != null) {
        Actor actor = ActorDao.getActorById(id);
        if (actor != null) {
            return delegate.call(ctx);
        }
    }

    return Promise.promise(new Function0<Result>() {

        public Result apply() throws Throwable {
            return play.mvc.Results.notFound(views.html.error.not_found.render(ctx.request().uri()));
        }

    });

}
 
开发者ID:theAgileFactory,项目名称:maf-desktop-app,代码行数:21,代码来源:CheckActorExists.java

示例6: call

import framework.utils.Utilities; //导入方法依赖的package包/类
@Override
public Promise<Result> call(final Http.Context ctx) throws Throwable {

    Long id = Utilities.getId(ctx);
    if (id != null) {
        Portfolio portfolio = PortfolioDao.getPortfolioById(id);
        if (portfolio != null) {
            return delegate.call(ctx);
        }
    }

    return Promise.promise(new Function0<Result>() {

        public Result apply() throws Throwable {
            return play.mvc.Results.notFound(views.html.error.not_found.render(ctx.request().uri()));
        }

    });

}
 
开发者ID:theAgileFactory,项目名称:maf-desktop-app,代码行数:21,代码来源:CheckPortfolioExists.java

示例7: call

import framework.utils.Utilities; //导入方法依赖的package包/类
@Override
public Promise<Result> call(final Http.Context ctx) throws Throwable {

    Long id = Utilities.getId(ctx);
    if (id != null) {
        Reporting reporting = ReportingDao.getReportingById(id);
        if (reporting != null) {
            return delegate.call(ctx);
        }
    }

    return Promise.promise(new Function0<Result>() {

        public Result apply() throws Throwable {
            return play.mvc.Results.notFound(views.html.error.not_found.render(ctx.request().uri()));
        }

    });

}
 
开发者ID:theAgileFactory,项目名称:maf-desktop-app,代码行数:21,代码来源:CheckReportingExists.java


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