List of usage examples for java.util Properties subclass-usage
From source file org.apache.falcon.util.ApplicationProperties.java
/** * Base class for reading application properties. */ public abstract class ApplicationProperties extends Properties { private static final Logger LOG = LoggerFactory.getLogger(ApplicationProperties.class);
From source file com.sldeditor.common.property.EncryptedPropertiesApache.java
/** * Class that encrypts/decrypts strings using org.apache.commons. * * @author Robert Ward (SCISYS) */ public class EncryptedPropertiesApache extends Properties implements EncryptedPropertiesInterface {
From source file net.sf.markov4jmeter.testplangenerator.util.Configuration.java
/**
* This class represents a configuration which supports reading of typed
* values from a properties file. Undefined values will be initialized with
* default values.
*
* @author Eike Schulz (esc@informatik.uni-kiel.de)
From source file org.opennms.netmgt.poller.remote.metadata.LinkedProperties.java
public class LinkedProperties extends Properties { private static final long serialVersionUID = 1L; protected LinkedProperties m_linkedDefaults; protected Set<Object> m_linkedKeys = new LinkedHashSet<>();
From source file com.comcast.cats.domain.configuration.CatsProperties.java
/**
*
* @author cfrede001
*
*/
@Named
From source file org.apache.nifi.registry.properties.NiFiRegistryProperties.java
public class NiFiRegistryProperties extends Properties { private static final Logger logger = LoggerFactory.getLogger(NiFiRegistryProperties.class); // Keys public static final String WEB_WAR_DIR = "nifi.registry.web.war.directory";
From source file com.l2jfree.config.L2Properties.java
/** * @author Noctarius */ public final class L2Properties extends Properties { private static final long serialVersionUID = -4599023842346938325L;
From source file org.p2pvpn.tools.AdvProperties.java
/** * Extended Properties. This class allows: Storing long byte arrays, * signing etc. * @author Wolfgang Ginolas */ public class AdvProperties extends Properties {
From source file com.microsoft.applicationinsights.test.framework.telemetries.TelemetryItem.java
/** * Created by moralt on 05/05/2015. */ public abstract class TelemetryItem extends Properties { private DocumentType docType;
From source file com.bitcup.configurator.FileConfigProperties.java
/**
* Wraps a {@link com.bitcup.configurator.FileConfig} instance and exposes its
* properties as a {@link java.util.Properties} instance. This is useful in the
* context of Spring's {@link org.springframework.beans.factory.config.PropertyPlaceholderConfigurer}
* whereby Spring configuration can be parametrized via placeholders that are
* resolved from a FileConfig instance.