public class ConfigurationProperty
extends java.lang.Object
implements java.lang.Cloneable
Title: Service Event Fabric Core
Description: A class representing a component configuration property.
Properties are used to configure the behavior of a specific component within the context of its hosting container and execution environment. Because such properties are optional and used to drive implementation-specific behavior they are presented as simple key-value pairs and are separate from the specific component configuration.
Each property has a name, value, label and description. The key naming convention follows basic naming conventions, disallowing most special characters with the exception of '.', allowing for use of standard dotted-notation for properties.
Copyright: Copyright (c) 2010
Company: StreamScape Technologies
Constructor and Description |
---|
ConfigurationProperty(java.lang.String name,
java.lang.String label,
java.lang.String description) |
Modifier and Type | Method and Description |
---|---|
ConfigurationProperty |
clone() |
java.lang.String |
getDescription() |
java.lang.String |
getLabel() |
java.lang.String |
getName() |
java.lang.Object |
getValue() |
java.lang.Class |
getValueClass() |
void |
setBooleanValue(boolean value) |
void |
setDescription(java.lang.String description) |
void |
setLabel(java.lang.String label) |
void |
setName(java.lang.String name) |
void |
setNumericValue(long value) |
void |
setTextValue(java.lang.String value) |
public ConfigurationProperty(java.lang.String name, java.lang.String label, java.lang.String description)
public void setName(java.lang.String name)
public java.lang.String getName()
public void setTextValue(java.lang.String value)
public void setNumericValue(long value)
public void setBooleanValue(boolean value)
public java.lang.Object getValue()
public java.lang.Class getValueClass()
public void setLabel(java.lang.String label)
public java.lang.String getLabel()
public void setDescription(java.lang.String description)
public java.lang.String getDescription()
public ConfigurationProperty clone()
clone
in class java.lang.Object
Copyright © 2015-2024 StreamScape Technologies. All rights reserved.