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

com.ibm.fhir.persistence.jdbc.dao.impl.ExternalSystem Maven / Gradle / Ivy

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

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


/**
 * DTO representing an external_systems record
 */
public class ExternalSystem {

    private final long externalSystemId;
    
    private final String externalSystemName;
    
    public ExternalSystem(long externalSystemId, String externalSystemName) {
        this.externalSystemId = externalSystemId;
        this.externalSystemName = externalSystemName;
    }

    /**
     * @return the externalSystemId
     */
    public long getExternalSystemId() {
        return externalSystemId;
    }

    /**
     * @return the externalSystemName
     */
    public String getExternalSystemName() {
        return externalSystemName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy