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

global.maplink.freight.sync.FreightSyncAPI Maven / Gradle / Ivy

There is a newer version: 1.5.14
Show newest version
package global.maplink.freight.sync;

import global.maplink.env.Environment;
import global.maplink.freight.async.FreightAsyncAPI;
import global.maplink.freight.schema.FreightCalculationRequest;
import global.maplink.freight.schema.FreightCalculationResponse;

public interface FreightSyncAPI {

    FreightCalculationResponse calculate(FreightCalculationRequest request);

    static FreightSyncAPI getInstance() {
        return new FreightSyncApiImpl(FreightAsyncAPI.getInstance());
    }

    static FreightSyncAPI getInstance(Environment environment) {
        return new FreightSyncApiImpl(FreightAsyncAPI.getInstance(environment));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy