Interface SipServletSnmpTrapRuntimeMBean
- All Superinterfaces:
DynamicMBean,MBeanRegistration,NotificationBroadcaster,weblogic.management.runtime.RuntimeMBean,weblogic.management.WebLogicMBean
public interface SipServletSnmpTrapRuntimeMBean
extends weblogic.management.runtime.RuntimeMBean
SIP servlet snmp trap deneration interface.
- Author:
- Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
-
Method Summary
Modifier and TypeMethodDescriptionvoidsendAlertTrap(String trapMessage) Generates an alert level trap message for the invoking SIP servlet.voidsendCriticalTrap(String trapMessage) Generates a critical level trap message for the invoking SIP servlet.voidsendEmergencyTrap(String trapMessage) Generates an emergency level trap message for the invoking SIP servlet.voidsendErrorTrap(String trapMessage) Generates an error level trap message for the invoking SIP servlet.voidsendInfoTrap(String trapMessage) All the trap messages log the server name, application name, and the servlet name along with the log message.voidsendNoticeTrap(String trapMessage) Generates a notice level trap message for the invoking SIP servlet.voidsendWarningTrap(String trapMessage) Generates a warninglevel trap message for the invoking SIP servlet.Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributesMethods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preRegisterMethods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListenerMethods inherited from interface weblogic.management.runtime.RuntimeMBean
addPropertyChangeListener, preDeregister, removePropertyChangeListenerMethods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, setParent
-
Method Details
-
sendInfoTrap
All the trap messages log the server name, application name, and the servlet name along with the log message. Seven types of trap messages can be generated by a servlet. The seven levels are: info, warning, error, notice, critical, alert, and emergency. To findout more about the meaning and usage guidelines for the trap messages refer to the WebLogic documentation. Generates an information level trap message for the invoking SIP servlet.- Parameters:
trapMessage- - Log message text
-
sendWarningTrap
Generates a warninglevel trap message for the invoking SIP servlet.- Parameters:
trapMessage-
-
sendErrorTrap
Generates an error level trap message for the invoking SIP servlet.- Parameters:
trapMessage-
-
sendNoticeTrap
Generates a notice level trap message for the invoking SIP servlet.- Parameters:
trapMessage-
-
sendCriticalTrap
Generates a critical level trap message for the invoking SIP servlet.- Parameters:
trapMessage-
-
sendAlertTrap
Generates an alert level trap message for the invoking SIP servlet.- Parameters:
trapMessage-
-
sendEmergencyTrap
Generates an emergency level trap message for the invoking SIP servlet.- Parameters:
trapMessage-
-