package siprp.companydataloaders; import com.evolute.properties.EvoAbstractPropertiesLoader; import com.evolute.properties.PropertiesException; public class SIPRPPropertiesLoader extends EvoAbstractPropertiesLoader { private static SIPRPPropertiesLoader instance; private SIPRPPropertiesLoader() { this(null,null,null,null); } public synchronized static SIPRPPropertiesLoader getInstance() { if (instance == null) { instance = new SIPRPPropertiesLoader(); } return instance; } public SIPRPPropertiesLoader( String[] mandatorySystemProperties, String[] mandatorySingletonProperties, String[] mandatoryJNLPProperties, String[] mandatoryAPPProperties) { super(mandatorySystemProperties, mandatorySingletonProperties, mandatoryJNLPProperties, mandatoryAPPProperties); } @Override protected void postLoad() throws PropertiesException { } }