- java.lang.Object
-
- com.pervasive.datarush.io.configuration.ConfigurationField
-
- Direct Known Subclasses:
PasswordField
,TextField
public abstract class ConfigurationField extends Object
An element of credential information. Typically represents a user-interface field that the user has entered/must enter.FileSystemProvider
's declare the expected fields via the methodFileSystemProvider#getConfigurationTemplate()
.ConfigurationField
's consist of afieldName
that uniquely identifies the field. In addition, the various subclasses ofConfigurationField
generally define a field value that represents the value that the user entered (or should enter in the case of a configuration template)- See Also:
FileConfiguration
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFieldName()
Returns the unique identifier for this field
-
-
-
Method Detail
-
getFieldName
public final String getFieldName()
Returns the unique identifier for this field- Returns:
- the field name
-
-