List of usage examples for java.util Properties subclass-usage
From source file com.anrisoftware.globalpom.threads.properties.ThreadingProperties.java
/**
* Loads threading properties from a properties file.
*
* @author Erwin Mueller, erwin.mueller@deventm.org
* @since 1.5
*/
From source file de.unistuttgart.ipvs.pmp.infoapp.webservice.properties.DeviceProperties.java
/** * Stores information about a device and allows to update or insert a new device information set * * @author Patrick Strobel */ public class DeviceProperties extends Properties {
From source file BaseProperties.java
/**
* <strong>Internal class, do not use directly.</strong>
*
* This class encapsulates <code>java.util.Properties</code> to add java
* primitives and some other java classes.
*
From source file org.talend.core.model.utils.ContextOrderProperties.java
/** * created by ldong on Aug 7, 2014 Detailled comment * */ public class ContextOrderProperties extends Properties {
From source file nl.nn.adapterframework.util.AppConstants.java
/**
* Singleton class that has the constant values for this application. <br/>
* <p>When an instance is created, it tries to load the properties file specified
* by the <code>propertiesFileName</code> field</p>
* <p>If a property exits with the name <code>ADDITIONAL.PROPERTIES.FILE</code>
* that file is loaded also</p>
From source file org.opensextant.xtext.collectors.mailbox.MailConfig.java
/**
* See reference property file at src/test/resources/collectors/imap-templ.cfg
* This IMAP template documents the various parameters for configuring a Java mail client to use IMAP or IMAP/SSL
*
* @author ubaldino
* @author b. o'neill
From source file com.feedzai.commons.sql.abstraction.engine.configuration.PdbProperties.java
/**
* Represents the possible properties to include when configuring the
* engine.
*
* @author Rui Vilao (rui.vilao@feedzai.com)
* @since 2.0.0
From source file org.bibsonomy.plugin.jabref.PluginProperties.java
/** * {@link PluginProperties} read and write the plugin properties file. * @author Waldemar Biller <biller@cs.uni-kassel.de> * */ public class PluginProperties extends Properties {
From source file ezbake.common.properties.EzProperties.java
/**
* This class extends {@link java.util.Properties} to add convenience methods to get primitives besides strings, deal with
* encrypted values, and load from various resources including streams
*
* If you are going to be dealing with encrypted properties then you are going to have to make sure to the set the
* TextCryptoProvider eg:
From source file org.freeeed.services.Settings.java
/**
* Singleton for the desktop application, passing parameters through the
* properties file. Note that for non-present keys we return an empty string
* rather than a null. This agrees with "Avoid nulls, use Null Objects" design
* pattern:
* https://code.google.com/p/guava-libraries/wiki/UsingAndAvoidingNullExplained.