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

com.atsid.play.controllers.ResultOrValue Maven / Gradle / Ivy

The newest version!
package com.atsid.play.controllers;

import play.mvc.Result;

/**
 * Object that wraps either a result or a value
 * @param  The type of the value
 */
public class ResultOrValue {
    public G value;
    public Result result;
    public ResultOrValue(G value) { this.value = value; }
    public ResultOrValue(Result result) { this.result = result; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy