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

com.ibm.fhir.server.rest.FHIRRestInteractionIssue Maven / Gradle / Ivy

/*
 * (C) Copyright IBM Corp. 2021
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package com.ibm.fhir.server.rest;

import javax.ws.rs.core.Response.Status;

import com.ibm.fhir.model.resource.Bundle.Entry;

/**
 * Captures the fact that an issue occurred while translating a bundle entry.
 * Record the issue so that it can be added to the result bundle later
 */
public class FHIRRestInteractionIssue extends FHIRRestInteractionBase {
    final Status status;

    // The Entry capturing the response. Can be null.
    final Entry responseEntry;

    /**
     * Public constructor
     *
     * @param entryIndex
     * @param initialTime
     * @param status
     * @param responseEntry
     */
    public FHIRRestInteractionIssue(int entryIndex, long initialTime, Status status, Entry responseEntry) {
        super(entryIndex, null, null, initialTime);
        this.status = status;
        this.responseEntry = responseEntry;
    }

    @Override
    public void accept(FHIRRestInteractionVisitor visitor) throws Exception {
        visitor.issue(getEntryIndex(), getRequestDescription(), getInitialTime(), status, responseEntry);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy