SettableBean
, WLDFBean
public interface WLDFHarvesterBean extends WLDFBean
Configures the behavior of the Harvester component of the WebLogic Diagnostic Framework (WLDF).
Modifier and Type | Method | Description |
---|---|---|
WLDFHarvestedTypeBean |
createHarvestedType(java.lang.String name) |
Creates a harvested type.
|
void |
destroyHarvestedType(WLDFHarvestedTypeBean entry) |
Removes an entry from the list of harvested types.
|
WLDFHarvestedTypeBean[] |
getHarvestedTypes() |
The list of MBeans representing the harvested types.
|
long |
getSamplePeriod() |
The interval, in milliseconds, between samples.
|
boolean |
isEnabled() |
Specifies whether the Harvester component is enabled.
|
WLDFHarvestedTypeBean |
lookupHarvestedType(java.lang.String name) |
Looks up an instance from the list of harvested types.
|
void |
setEnabled(boolean enabled) |
Sets the value of the Enabled attribute.
|
void |
setSamplePeriod(long newValue) |
Sets the value of the SamplePeriod attribute.
|
boolean isEnabled()
Specifies whether the Harvester component is enabled.
If true
, all types that are both configured and
enabled are harvested. If false
, nothing is harvested.
void setEnabled(boolean enabled)
Sets the value of the Enabled attribute.
enabled
- The enabled state of the Harvester component.isEnabled()
long getSamplePeriod()
The interval, in milliseconds, between samples.
void setSamplePeriod(long newValue) throws java.lang.IllegalArgumentException
Sets the value of the SamplePeriod attribute.
newValue
- the new interval valuejava.lang.IllegalArgumentException
getSamplePeriod()
WLDFHarvestedTypeBean[] getHarvestedTypes()
The list of MBeans representing the harvested types.
WLDFHarvestedTypeBean createHarvestedType(java.lang.String name)
Creates a harvested type.
name
- the name of the entity being createdvoid destroyHarvestedType(WLDFHarvestedTypeBean entry)
Removes an entry from the list of harvested types.
entry
- the entry to be deletedWLDFHarvestedTypeBean lookupHarvestedType(java.lang.String name)
Looks up an instance from the list of harvested types.
name
- the name of the entry to be looked up