List of usage examples for java.util Properties subclass-usage
From source file org.kaaproject.kaa.client.KaaClientProperties.java
/** * Service class to store base endpoint configuration. */ public class KaaClientProperties extends Properties { public static final String KAA_CLIENT_PROPERTIES_FILE = "kaaClientPropertiesFile"; public static final String BUILD_VERSION = "build.version";
From source file org.kawanfw.sql.tomcat.util.LinkedProperties.java
/**
*
* @author Nicolas de Pomereu
*
* Allows to read a properties with property names ordered on insertion
* order passed to constructor. (Just for reading, ordered store is not
From source file org.pentaho.hadoop.PropertiesConfigurationProperties.java
/** * Created by bryan on 8/6/15. */ public class PropertiesConfigurationProperties extends Properties { private final PropertiesConfiguration propertiesConfiguration;
From source file org.pentaho.di.core.ConcurrentMapProperties.java
/** * Thread Safe version of Java Properties class. */ public class ConcurrentMapProperties extends Properties { private static final long serialVersionUID = -7444528393201025496L;
From source file HtmlCharacterEntities.java
/**
* A collection of all character entites defined in the HTML4 standard. The key
* is the entity name, the property value is the decoded string.
*
* @author Thomas Morgner
*/
From source file org.nuxeo.common.codec.CryptoProperties.java
/**
* {@link Properties} with crypto capabilities.<br>
* The cryptographic algorithms depend on:
* <ul>
* <li>Environment.SERVER_STATUS_KEY</li>
* <li>Environment.CRYPT_KEYALIAS && Environment.CRYPT_KEYSTORE_PATH || getProperty(Environment.JAVA_DEFAULT_KEYSTORE)</li>
From source file org.globus.common.CoGProperties.java
/** Responsible for managing the properties file
* "~/.globus/cog.properties", which holds information about various properties
* needed by the security classes. These properties include:
* <UL>
* <LI> the location of the user certificate file </LI>
* <LI> the location of the user key file </LI>
From source file RefreshingProperties.java
/**
* This is a java.util.Properties class that will check a file or URL for changes
* periodically. It has a threaded and non-threaded mode, and will reload a URL
* every recheck time, or inspect the last modified date on a file on check.
* @author <a href="mailto:cooper@screaming-penguin.com">Robert "kebernet" Cooper</a>
* @version $Revision: 1.4 $
From source file com.adaptris.core.management.BootstrapProperties.java
/** * This class holds the necessary information for startup and provides a extra method for getting the available adapter * configuration. * */ public class BootstrapProperties extends Properties {
From source file net.theblackchamber.crypto.implementations.SecureProperties.java
/**
* Extension of the java {@link Properties} class which will provide the ability
* to transparently use encrypted properties.<br>
* Usage: In order to make use of encryped properties the properties file should
* contain an entry key-path which will point to a keystore file created via
* {@link KeystoreUtils}.<br>