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

com.targomo.client.api.response.DefaultResponse Maven / Gradle / Ivy

There is a newer version: 0.39.0
Show newest version
package com.targomo.client.api.response;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.targomo.client.api.TravelOptions;
import com.targomo.client.api.exception.TargomoClientException;

/**
 *
 * @param  this is the type of the data that ou want to be visible from outside the response
 * @param  this is the type of data that Jackson should create and from which you parse the data of type O
 *           , e.g. usually {@link java.util.Map} from {@link String} to {@link Object} for an object
 */
public abstract class DefaultResponse {

    //Json parsed data
    private ResponseCode code;
    private long requestTimeMillis;
    private String message;
    protected O data;

    //other parameters
    private long parseTimeMillis;
    private long roundTripTimeMillis;
    private TravelOptions travelOptions;


    public void finishDeserialization(TravelOptions travelOptions, long roundTripTimeMillis, long parseTimeMillis) {
        this.travelOptions 	   	 = travelOptions;
        this.roundTripTimeMillis = roundTripTimeMillis;
        this.parseTimeMillis 	 = parseTimeMillis;
    }

    void setCode(ResponseCode code) {
        this.code = code;
    }

    @JsonProperty("requestTime")
    void setRequestTimeMillis(long requestTimeMillis) {
        this.requestTimeMillis = requestTimeMillis;
    }

    void setMessage(String message) {
        this.message = message;
    }

    //private so only json parser will use it
    private void setData(I data){
        this.data = parseData(data);
    }

    protected abstract O parseData(I jacksonData);

    /**
     * @return the code
     */
    public ResponseCode getCode() {
        return code;
    }

    /**
     * @return the requestTimeMillis
     */
    public long getRequestTimeMillis() {
        return requestTimeMillis;
    }

    public String getMessage() {
        return message;
    }

    public O getData() {
        return this.data;
    }

    public long getParseTimeMillis() {
        return parseTimeMillis;
    }

    /**
     * @return the travelOptions
     */
    public TravelOptions getTravelOptions() {
        return travelOptions;
    }

    /**
     * @return the roundTripTimeMillis
     */
    public long getRoundTripTimeMillis() {
        return roundTripTimeMillis;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy