Package org.apache.felix.framework.util
Class ListenerInfo
- java.lang.Object
-
- org.apache.felix.framework.util.ListenerInfo
-
- All Implemented Interfaces:
ListenerHook.ListenerInfo
public class ListenerInfo extends java.lang.Object implements ListenerHook.ListenerInfo
-
-
Constructor Summary
Constructors Constructor Description ListenerInfo(ListenerInfo info, boolean removed)ListenerInfo(Bundle bundle, BundleContext context, java.lang.Class listenerClass, java.util.EventListener listener, Filter filter, java.lang.Object acc, boolean removed)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Compares thisListenerInfoto anotherListenerInfo.BundlegetBundle()BundleContextgetBundleContext()Return the context of the bundle which added the listener.java.lang.StringgetFilter()Return the filter string with which the listener was added.java.util.EventListenergetListener()java.lang.ClassgetListenerClass()FiltergetParsedFilter()java.lang.ObjectgetSecurityContext()inthashCode()Returns the hash code for thisListenerInfo.booleanisRemoved()Return the state of the listener for this addition and removal life cycle.
-
-
-
Constructor Detail
-
ListenerInfo
public ListenerInfo(Bundle bundle, BundleContext context, java.lang.Class listenerClass, java.util.EventListener listener, Filter filter, java.lang.Object acc, boolean removed)
-
ListenerInfo
public ListenerInfo(ListenerInfo info, boolean removed)
-
-
Method Detail
-
getBundle
public Bundle getBundle()
-
getBundleContext
public BundleContext getBundleContext()
Description copied from interface:ListenerHook.ListenerInfoReturn the context of the bundle which added the listener.- Specified by:
getBundleContextin interfaceListenerHook.ListenerInfo- Returns:
- The context of the bundle which added the listener.
-
getListenerClass
public java.lang.Class getListenerClass()
-
getListener
public java.util.EventListener getListener()
-
getParsedFilter
public Filter getParsedFilter()
-
getFilter
public java.lang.String getFilter()
Description copied from interface:ListenerHook.ListenerInfoReturn the filter string with which the listener was added.- Specified by:
getFilterin interfaceListenerHook.ListenerInfo- Returns:
- The filter string with which the listener was added. This may
be
nullif the listener was added without a filter.
-
getSecurityContext
public java.lang.Object getSecurityContext()
-
isRemoved
public boolean isRemoved()
Description copied from interface:ListenerHook.ListenerInfoReturn the state of the listener for this addition and removal life cycle. Initially this method will returnfalseindicating the listener has been added but has not been removed. After the listener has been removed, this method must always returntrue.There is an extremely rare case in which removed notification to
ListenerHooks can be made before added notification if two threads are racing to add and remove the same service listener. BecauseListenerHooks are called synchronously during service listener addition and removal, the Framework cannot guarantee in-order delivery of added and removed notification for a given service listener. This method can be used to detect this rare occurrence.- Specified by:
isRemovedin interfaceListenerHook.ListenerInfo- Returns:
falseif the listener has not been removed,trueotherwise.
-
equals
public boolean equals(java.lang.Object obj)
Description copied from interface:ListenerHook.ListenerInfoCompares thisListenerInfoto anotherListenerInfo. TwoListenerInfos are equals if they refer to the same listener for a given addition and removal life cycle. If the same listener is added again, it must have a differentListenerInfowhich is not equal to thisListenerInfo.- Specified by:
equalsin interfaceListenerHook.ListenerInfo- Overrides:
equalsin classjava.lang.Object- Parameters:
obj- The object to compare against thisListenerInfo.- Returns:
trueif the other object is aListenerInfoobject and both objects refer to the same listener for a given addition and removal life cycle.
-
hashCode
public int hashCode()
Description copied from interface:ListenerHook.ListenerInfoReturns the hash code for thisListenerInfo.- Specified by:
hashCodein interfaceListenerHook.ListenerInfo- Overrides:
hashCodein classjava.lang.Object- Returns:
- The hash code of this
ListenerInfo.
-
-