forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
885 B
39 lines
885 B
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
|
|
{
|
|
}
|
|
}
|