Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02

weblogic.management.configuration
Interface DomainLogFilterMBean

All Superinterfaces:
ConfigurationMBean, DescriptorBean, DynamicMBean, MBeanRegistration, NotificationBroadcaster, SettableBean, WebLogicMBean

Deprecated. 9.0.0.0 Replaced by LogFilterMBean

public interface DomainLogFilterMBean
extends ConfigurationMBean

This MBean represents a filter to qualify log messages which are logged to the domain logfile. A message must qualify all criteria specified to qualify the filter.


Field Summary
static int ALERT
          Deprecated. weblogic.logging.Serverities.ALERT
static int CRITICAL
          Deprecated. weblogic.logging.Serverities.CRITICAL
static int EMERGENCY
          Deprecated. weblogic.logging.Serverities.EMERGENCY
static int ERROR
          Deprecated. weblogic.logging.Serverities.ERROR
static int INFO
          Deprecated. weblogic.logging.Serverities.INFO
static int NOTICE
          Deprecated. weblogic.logging.Serverities.NOTICE
static int WARNING
          Deprecated. weblogic.logging.Serverities.WARNING
 
Fields inherited from interface weblogic.management.configuration.ConfigurationMBean
DEFAULT_EMPTY_BYTE_ARRAY
 
Method Summary
 int getSeverityLevel()
          Deprecated. This attibute is deprecated in favor of LogMBean's DomainLogBroadcastSeverity attribute.
 String[] getSubsystemNames()
          Deprecated.  
 String[] getUserIds()
          Deprecated.  
 void setDelegate(LogFilterMBean delegate)
          Deprecated.  
 void setSeverityLevel(int severityLevel)
          Deprecated. Sets the value of the SeverityLevel attribute.
 void setSubsystemNames(String[] subsystemList)
          Deprecated.  
 void setUserIds(String[] userIdList)
          Deprecated.  
 
Methods inherited from interface weblogic.management.configuration.ConfigurationMBean
freezeCurrentValue, getId, getInheritedProperties, getName, getNotes, isDynamicallyCreated, isInherited, isSet, restoreDefaultValue, setComments, setDefaultedMBean, setName, setNotes, setPersistenceEnabled, unSet
 
Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setParent
 
Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributes
 
Methods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preDeregister, preRegister
 
Methods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListener
 
Methods inherited from interface weblogic.descriptor.DescriptorBean
addPropertyChangeListener, createChildCopyIncludingObsolete, getParentBean, isEditable, removePropertyChangeListener
 

Field Detail

INFO

static final int INFO
Deprecated. weblogic.logging.Serverities.INFO
See Also:
Constant Field Values

WARNING

static final int WARNING
Deprecated. weblogic.logging.Serverities.WARNING
See Also:
Constant Field Values

ERROR

static final int ERROR
Deprecated. weblogic.logging.Serverities.ERROR
See Also:
Constant Field Values

NOTICE

static final int NOTICE
Deprecated. weblogic.logging.Serverities.NOTICE
See Also:
Constant Field Values

CRITICAL

static final int CRITICAL
Deprecated. weblogic.logging.Serverities.CRITICAL
See Also:
Constant Field Values

ALERT

static final int ALERT
Deprecated. weblogic.logging.Serverities.ALERT
See Also:
Constant Field Values

EMERGENCY

static final int EMERGENCY
Deprecated. weblogic.logging.Serverities.EMERGENCY
See Also:
Constant Field Values
Method Detail

getSeverityLevel

int getSeverityLevel()
Deprecated. This attibute is deprecated in favor of LogMBean's DomainLogBroadcastSeverity attribute.

The minimum severity of a message that this domain log filter forwards to the domain log. All messages with the specified severity and higher will be sent to the domain log.

Returns:
The severityLevel value
See Also:
Severities
Default Value:
weblogic.logging.Severities.WARNING
Valid Values:
weblogic.logging.Severities.INFO, weblogic.logging.Severities.WARNING,weblogic.logging.Severities.ERROR,weblogic.logging.Severities.NOTICE,weblogic.logging.Severities.CRITICAL,weblogic.logging.Severities.ALERT,weblogic.logging.Severities.EMERGENCY

setSeverityLevel

void setSeverityLevel(int severityLevel)
                      throws InvalidAttributeValueException,
                             DistributedManagementException
Deprecated. 

Sets the value of the SeverityLevel attribute.

Parameters:
severityLevel - The new severityLevel value
Throws:
InvalidAttributeValueException
DistributedManagementException
See Also:
DomainLogFilterMBean.getSeverityLevel()

getSubsystemNames

String[] getSubsystemNames()
Deprecated. 

The subsystems for which this filter can accept messages. If no subsystems are chosen, the filter accepts messages from all subsystems.

Returns:
The subsystemNames value

setSubsystemNames

void setSubsystemNames(String[] subsystemList)
                       throws InvalidAttributeValueException,
                              DistributedManagementException
Deprecated. 

Sets the value of the SubsystemNames attribute.

Parameters:
subsystemList - The new subsystemNames value
Throws:
InvalidAttributeValueException
DistributedManagementException
See Also:
DomainLogFilterMBean.getSubsystemNames()

getUserIds

String[] getUserIds()
Deprecated. 

The user ids for which associated messages are accepted for publishing. If no ids are specified, messages from all user ids can be sent to the log.

Every message includes the user id under which the associated event was executed. To execute some pieces of internal code, WebLogic Server authenticates the id of the user who initiates the execution and then runs the code under a special Kernel Identity user id. Java EE modules such as EJBs that are deployed onto a server instance report the user id that the module passes to the server.

Returns:
The userIds value

setUserIds

void setUserIds(String[] userIdList)
                throws InvalidAttributeValueException,
                       DistributedManagementException
Deprecated. 

Sets the value of the UserIds attribute.

Parameters:
userIdList - The new userIds value
Throws:
InvalidAttributeValueException
DistributedManagementException
See Also:
DomainLogFilterMBean.getUserIds()

setDelegate

void setDelegate(LogFilterMBean delegate)
Deprecated. 

Copyright 1996, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02