@Action(
semantics = SemanticsOf.IDEMPOTENT
)
public ToDoItem updateCost(
@Parameter(optionality = Optionality.OPTIONAL)
@Digits(integer = 10, fraction = 2)
final BigDecimal newCost) {
final String titleOf = titleService.titleOf(this);
LOG.debug("%s: cost updated: %s -> %s", titleOf, getCost(), newCost);
// just to simulate a long-running action
try {
Thread.sleep(3000);
} catch (final InterruptedException ignored) {
}
setCost(newCost);
return this;
}
ToDoItem.java 文件源码
java
阅读 28
收藏 0
点赞 0
评论 0
项目:isis-app-todoapp
作者:
评论列表
文章目录