public final class BooleanStartupParameter extends StartupParameter<java.lang.Boolean>
Boolean startup parameters.name, originalName, prefix, value| Constructor and Description |
|---|
BooleanStartupParameter(java.lang.String name,
java.lang.String originalName)
This is the default constructor which calls the
StartupParameter constructor. |
BooleanStartupParameter(java.lang.String prefix,
java.lang.String name,
java.lang.String originalName)
This is the default constructor which calls the
StartupParameter constructor. |
| Modifier and Type | Method and Description |
|---|---|
void |
initFromBootstrap(BootstrapConfig bootstrapConfig)
Initialize the parameter from the
BootstrapConfig |
void |
initFromDirectory()
Initialize the parameter from the
DirectoryService. |
void |
readExternal(java.io.ObjectInput in)
Used for helping with
Externalizable.readExternal(ObjectInput) |
java.lang.String |
toString()
Overrides te default
Object.toString() method. |
void |
writeExternal(java.io.ObjectOutput out)
Used for helping with
Externalizable.writeExternal(ObjectOutput) |
getValuepublic BooleanStartupParameter(java.lang.String name,
java.lang.String originalName)
StartupParameter constructor.name - is the parameter name used by FWD.originalName - is the original name used by OE.public BooleanStartupParameter(java.lang.String prefix,
java.lang.String name,
java.lang.String originalName)
StartupParameter constructor.prefix - is the parameter name prefix used by FWD.name - is the parameter name used by FWD.originalName - is the original name used by OE.public void initFromDirectory()
DirectoryService.initFromDirectory in class StartupParameter<java.lang.Boolean>public void initFromBootstrap(BootstrapConfig bootstrapConfig)
BootstrapConfiginitFromBootstrap in class StartupParameter<java.lang.Boolean>bootstrapConfig - is the bootstrap configuration.public void readExternal(java.io.ObjectInput in)
throws java.io.IOException
Externalizable.readExternal(ObjectInput)readExternal in class StartupParameter<java.lang.Boolean>in - the stream to read data from in order to restore the objectjava.io.IOException - if I/O errors occurpublic void writeExternal(java.io.ObjectOutput out)
throws java.io.IOException
Externalizable.writeExternal(ObjectOutput)writeExternal in class StartupParameter<java.lang.Boolean>out - the stream to write the object tojava.io.IOException - Includes any I/O exceptions that may occurpublic java.lang.String toString()
Object.toString() method. If the value is null, it returns null.toString in class StartupParameter<java.lang.Boolean>