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

com.cleeng.api.domain.async.AsyncOfferRequest Maven / Gradle / Ivy

package com.cleeng.api.domain.async;

import com.cleeng.api.AsyncRequestCallback;

import java.io.Serializable;

public class AsyncOfferRequest extends AsyncRequest {

    public Serializable offerData;

    public AsyncOfferRequest(Serializable offerData, AsyncRequestCallback callback) {

        super();

        this.callback = callback;
        this.offerData = offerData;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy