001package org.dcm4che3.conf.api;
002
003public class DicomConfigOptions {
004
005    /**
006     * If set to true, will not throw exceptions when a reference to a configuration object cannot be resolved.
007     * Instead, such properties will be left null
008     */
009    private Boolean ignoreUnresolvedReferences;
010
011    public Boolean getIgnoreUnresolvedReferences() {
012        return ignoreUnresolvedReferences;
013    }
014
015    public void setIgnoreUnresolvedReferences(Boolean ignoreUnresolvedReferences) {
016        this.ignoreUnresolvedReferences = ignoreUnresolvedReferences;
017    }
018}