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

com.ibm.fhir.persistence.jdbc.dao.api.FhirSequenceDAO Maven / Gradle / Ivy

There is a newer version: 4.11.1
Show newest version
/*
 * (C) Copyright IBM Corp. 2019
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package com.ibm.fhir.persistence.jdbc.dao.api;

import java.sql.SQLException;

/**
 * gets the next value in the database's FHIR_SEQUENCE sequence
 */
public interface FhirSequenceDAO {

    /**
     * Get the next value from the FHIR_SEQUENCE
     * @return
     * @throws SQLException
     */
    long nextValue() throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy