javax.management.DynamicMBean
, javax.management.MBeanRegistration
, javax.management.NotificationBroadcaster
, RuntimeMBean
, WebLogicMBean
public interface DomainSecurityRuntimeMBean extends RuntimeMBean
This class is used for monitoring the Domain WebLogic Security Info.
Modifier and Type | Method | Description |
---|---|---|
SecurityValidationWarningVBean[] |
getSecurityValidationWarnings() |
Returns a list of potential security validation warnings for this domain.
|
boolean |
hasSecurityValidationWarnings() |
Returns true if there are any SecurityValidationWarnings for the domain.
|
void |
refreshCache() |
Refreshes the cache of security validation warnings for the domain.
|
getAttribute, getAttributes, invoke, setAttribute, setAttributes
postDeregister, postRegister, preRegister
addNotificationListener, getNotificationInfo, removeNotificationListener
addPropertyChangeListener, removePropertyChangeListener
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, setParent
SecurityValidationWarningVBean[] getSecurityValidationWarnings() throws ManagementException
Returns a list of potential security validation warnings for this domain. The returned list is similar to those displayed during server startup when secure mode validation is performed. The returned list contains information about each warning including the message id, description, and server name for the warning. If no issues are present, then an empty array is returned. This method caches the validation warnings for each server in the domain. This cache is refreshed on a scheduled basis every 24 hours. To refresh the cache manually, call the refreshCache method.
ManagementException
boolean hasSecurityValidationWarnings()
Returns true if there are any SecurityValidationWarnings for the domain.
void refreshCache() throws ManagementException
Refreshes the cache of security validation warnings for the domain. This method may take several seconds to complete as this requires communication with all servers in the domain.
ManagementException