All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.bran.play.FlashWrapper Maven / Gradle / Ivy

The newest version!
package cn.bran.play;

import play.mvc.Scope.Flash;
import cn.bran.japid.util.FlashScope;

/**
 * wrap the access to the Play! Flash scope
 * 
 * @author bran
 *
 */
public class FlashWrapper implements FlashScope{

	@Override
	public Object get(String key) {
		return f().get(key);
	}

	@Override
	public Object error() {
		return f().get(FlashScope.ERROR); // match the literal used in Scope
	}

	@Override
	public Object success() {
		return f().get(FlashScope.SUCCESS); // match the literal 
	}
	
	/**
	 * @return
	 */
	private Flash f() {
		return Flash.current();
	}
	
	@Override
	public boolean hasError() {
		return this.error() != null;
	}

	@Override
	public boolean hasSuccess() {
		return this.success() != null;
	}

	@Override
	public void putSuccess(Object message) {
		f().put(FlashScope.SUCCESS, message);
	}

	@Override
	public boolean contains(String key) {
		return f().contains(key);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy