001package org.dcm4che3.conf.api.hl7;
002
003import org.dcm4che3.conf.core.api.ConfigurationException;
004import org.dcm4che3.net.hl7.HL7Application;
005
006public interface IHL7ApplicationCache {
007
008    int getStaleTimeout();
009
010    void setStaleTimeout(int staleTimeout);
011
012    void clear();
013
014    HL7Application get(String name) throws ConfigurationException;
015
016    HL7Application findHL7Application(String name)
017            throws ConfigurationException;
018
019}