Package com.astamuse.asta4d.web.dispatch.request

Examples of com.astamuse.asta4d.web.dispatch.request.MultiResultHolder


    public HandyRuleWithForward forward(Object result, String targetPath) {
        return this._forward(result, targetPath);
    }

    public HandyRuleWithForward forward(Object result, String targetPath, int status) {
        MultiResultHolder mrh = new MultiResultHolder();
        mrh.addResult(new HeaderInfoProvider(status));
        mrh.addResult(targetPath);
        return this._forward(result, mrh);
    }
View Full Code Here


    public HandyRuleWithForward forward(Object result, String targetPath) {
        return this._forward(result, targetPath);
    }

    public HandyRuleWithForward forward(Object result, String targetPath, int status) {
        MultiResultHolder mrh = new MultiResultHolder();
        mrh.addResult(new HeaderInfoProvider(status));
        mrh.addResult(targetPath);
        return this._forward(result, mrh);
    }
View Full Code Here

TOP

Related Classes of com.astamuse.asta4d.web.dispatch.request.MultiResultHolder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.