本文整理汇总了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()));
}
});
}
示例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()));
}
});
}
示例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()));
}
});
}
示例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()));
}
});
}
示例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()));
}
});
}
示例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()));
}
});
}
示例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()));
}
});
}