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

com.github.kubatatami.judonetworking.RequestSuccessResult Maven / Gradle / Ivy

package com.github.kubatatami.judonetworking;

/**
 * Created with IntelliJ IDEA.
 * User: jbogacki
 * Date: 23.07.2013
 * Time: 23:46
 * To change this template use File | Settings | File Templates.
 */
public class RequestSuccessResult extends RequestResult {


    public RequestSuccessResult(Object cacheObject) {
        this.cacheObject = cacheObject;
    }

    public RequestSuccessResult(Integer id, Object result) {
        this.id = id;
        this.result = result;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy