Package javax.wbem.listener
Interface IndicationListener
-
- All Superinterfaces:
java.util.EventListener
public interface IndicationListener extends java.util.EventListenerThis interface is implemented by the code that wants to create a listener for indications. See theWBEMListenerFactoryclass for an example.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidindicationOccured(java.lang.String pIndicationURL, CIMInstance pIndication)Called when an indication has been received by the listener
-
-
-
Method Detail
-
indicationOccured
void indicationOccured(java.lang.String pIndicationURL, CIMInstance pIndication)Called when an indication has been received by the listener- Parameters:
pIndicationURL- The URL to which the indication was posted. For example if the indication was delivered over the https protocol to the destination listener https://hostname:6111/, pIndicationURL would be set to https://hostname:6111/.pIndication- The indication received.
-
-