public Flash getFlash(boolean create) {
if (this.flash != null) {
return this.flash;
}
Flash flash = (Flash) getRequest().getAttribute("$$paoding-rose.flash");
if (flash == null && create) {
flash = new FlashImpl(this);
getRequest().setAttribute("$$paoding-rose.flash", flash);
}
return this.flash = flash;