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

com.visenze.visearch.InsertTrans Maven / Gradle / Ivy

There is a newer version: 1.14.5
Show newest version
package com.visenze.visearch;

import com.visenze.visearch.internal.ResponseBase;

import java.util.List;

public class InsertTrans extends ResponseBase {

    private String transId;
    private Integer total;
    private List errorList;

    public InsertTrans(String transId, Integer total, List errorList) {
        this.transId = transId;
        this.total = total;
        this.errorList = errorList;
    }

    public InsertTrans(String errorMessage, Throwable e, String rawResponseMessage) {
        super.setErrorMessage(errorMessage);
        super.setCause(e);
        super.setRawResponseMessage(rawResponseMessage);
    }

    public String getTransId() {
        return transId;
    }

    public Integer getTotal() {
        return total;
    }

    public List getErrorList() {
        return errorList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy