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

com.chargebee.RequestWrap Maven / Gradle / Ivy

There is a newer version: 3.26.0
Show newest version
/*
 * Copyright (c) 2017 ChargeBee Inc
 * All Rights Reserved.
 */
package com.chargebee;

import com.chargebee.internal.RequestBase;
import java.util.concurrent.Callable;

/**
 *
 * @author cb-ajit
 * @param 
 */
public abstract class RequestWrap implements Callable {

    public final Environment env;
    public final T request;

    public RequestWrap(Environment env, T request) {
        this.env = env;
        this.request = request;
    }

    public abstract ApiResponse call() throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy