Class BeanContextServicesSupport

All Implemented Interfaces:
BeanContext, BeanContextChild, BeanContextServiceRevokedListener, BeanContextServices, BeanContextServicesListener, DesignMode, PropertyChangeListener, VetoableChangeListener, Visibility, Serializable, Iterable, Collection, EventListener

@Deprecated(since="23", forRemoval=true) public class BeanContextServicesSupport extends BeanContextSupport implements BeanContextServices
Deprecated, for removal: This API element is subject to removal in a future version.

This helper class provides a utility implementation of the java.beans.beancontext.BeanContextServices interface.

Since this class directly implements the BeanContextServices interface, the class can, and is intended to be used either by subclassing this implementation, or via delegation of an instance of this class from another through the BeanContextProxy interface.

Since:
1.2
See Also:
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    protected class 
    Deprecated, for removal: This API element is subject to removal in a future version.
    A protected nested class containing per-child information in the children hashtable.
    protected class 
    Deprecated, for removal: This API element is subject to removal in a future version.
    Subclasses may subclass this nested class to represent a proxy for each BeanContextServiceProvider.
    protected static class 
    Deprecated, for removal: This API element is subject to removal in a future version.
    subclasses may subclass this nested class to add behaviors for each BeanContextServicesProvider.

    Nested classes/interfaces declared in class BeanContextSupport

    BeanContextSupport.BCSChild, BeanContextSupport.BCSIterator
    Modifier and Type
    Class
    Description
    protected class 
    Deprecated, for removal: This API element is subject to removal in a future version.
    A protected nested class containing per-child information in the children hashtable.
    protected static final class 
    Deprecated, for removal: This API element is subject to removal in a future version.
    protected final subclass that encapsulates an iterator but implements a noop remove() method.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
    List of BeanContextServicesListener objects.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Delegate for the BeanContextServiceProvider.
    protected int
    Deprecated, for removal: This API element is subject to removal in a future version.
    The number of instances of a serializable BeanContextServceProvider.
    Deprecated, for removal: This API element is subject to removal in a future version.
    all accesses to the protected transient HashMap services field should be synchronized on that object

    Fields declared in class BeanContextSupport

    bcmListeners, children, designTime, locale, okToUseGui
    Modifier and Type
    Field
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
    all accesses to the protected ArrayList bcmListeners field shall be synchronized on that object.
    Deprecated, for removal: This API element is subject to removal in a future version.
    all accesses to the protected HashMap children field shall be synchronized on that object.
    protected boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    A boolean indicating whether or not this object is currently in design time mode.
    protected Locale
    Deprecated, for removal: This API element is subject to removal in a future version.
    The current locale of this BeanContext.
    protected boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    A boolean indicating if this instance may now render a GUI.

    Fields declared in class BeanContextChildSupport

    beanContext, beanContextChildPeer, pcSupport, rejectedSetBCOnce, vcSupport
    Modifier and Type
    Field
    Description
    protected BeanContext
    Deprecated, for removal: This API element is subject to removal in a future version.
    The bean context.
    Deprecated, for removal: This API element is subject to removal in a future version.
    The BeanContext in which this BeanContextChild is nested.
    Deprecated, for removal: This API element is subject to removal in a future version.
    The PropertyChangeSupport associated with this BeanContextChildSupport.
    protected boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    A flag indicating that there has been at least one PropertyChangeVetoException thrown for the attempted setBeanContext operation.
    Deprecated, for removal: This API element is subject to removal in a future version.
    The VetoableChangeSupport associated with this BeanContextChildSupport.

    Fields declared in interface BeanContext

    globalHierarchyLock
    Modifier and Type
    Field
    Description
    static final Object
    Deprecated, for removal: This API element is subject to removal in a future version.
    This global lock is used by both BeanContext and BeanContextServices implementors to serialize changes in a BeanContext hierarchy and any service requests etc.

    Fields declared in interface DesignMode

    PROPERTYNAME
    Modifier and Type
    Field
    Description
    static final String
    The standard value of the propertyName as fired from a BeanContext or other source of PropertyChangeEvents.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
    Create an instance that is not a delegate of another object
    Deprecated, for removal: This API element is subject to removal in a future version.
    Create an instance with a peer
    Deprecated, for removal: This API element is subject to removal in a future version.
    Create an instance using the specified locale
    Deprecated, for removal: This API element is subject to removal in a future version.
    Create an instance using the specified Locale and design mode.
    BeanContextServicesSupport(BeanContextServices peer, Locale lcle, boolean dTime, boolean visible)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Construct a BeanContextServicesSupport instance
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    add a BeanContextServicesListener
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    add a service
    protected boolean
    addService(Class<?> serviceClass, BeanContextServiceProvider bcsp, boolean fireEvent)
    Deprecated, for removal: This API element is subject to removal in a future version.
    add a service
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    called from BeanContextSupport readObject before it deserializes the children ...
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    called from BeanContextSupport writeObject before it serializes the children ...
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    called from superclass child removal operations after a child has been successfully removed. called with child synchronized.
    createBCSChild(Object targetChild, Object peer)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Subclasses can override this method to insert their own subclass of Child without having to override add() or the other Collection methods that add children to the set.
    Deprecated, for removal: This API element is subject to removal in a future version.
    subclasses can override this method to create new subclasses of BCSSServiceProvider without having to override addService() in order to instantiate.
    protected final void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Fires a BeanContextServiceAvailableEvent indicating that a new service has become available.
    protected final void
    fireServiceAdded(Class<?> serviceClass)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Fires a BeanContextServiceEvent notifying of a new service.
    protected final void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Fires a BeanContextServiceEvent notifying of a service being revoked.
    protected final void
    fireServiceRevoked(Class<?> serviceClass, boolean revokeNow)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Fires a BeanContextServiceRevokedEvent indicating that a particular service is no longer available.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the BeanContextServices associated with this BeanContextServicesSupport.
    protected static final BeanContextServicesListener
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the BeanContextServicesListener (if any) of the specified child.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the currently available services for this context.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the list of service dependent service parameters (Service Selectors) for the specified service, by calling getCurrentServiceSelectors() on the underlying BeanContextServiceProvider.
    getService(BeanContextChild child, Object requestor, Class<?> serviceClass, Object serviceSelector, BeanContextServiceRevokedListener bcsrl)
    Deprecated, for removal: This API element is subject to removal in a future version.
    obtain a service which may be delegated
    boolean
    hasService(Class<?> serviceClass)
    Deprecated, for removal: This API element is subject to removal in a future version.
    has a service, which may be delegated
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    called by BeanContextSupport superclass during construction and deserialization to initialize subclass transient state.
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    called from setBeanContext to notify a BeanContextChild to allocate resources obtained from the nesting BeanContext.
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    called from setBeanContext to notify a BeanContextChild to release resources obtained from the nesting BeanContext.
    void
    releaseService(BeanContextChild child, Object requestor, Object service)
    Deprecated, for removal: This API element is subject to removal in a future version.
    release a service
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    remove a BeanContextServicesListener
    void
    revokeService(Class<?> serviceClass, BeanContextServiceProvider bcsp, boolean revokeCurrentServicesNow)
    Deprecated, for removal: This API element is subject to removal in a future version.
    remove a service
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    BeanContextServicesListener callback, propagates event to all currently registered listeners and BeanContextServices children, if this BeanContextService does not already implement this service itself.
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    BeanContextServicesListener callback, propagates event to all currently registered listeners and BeanContextServices children, if this BeanContextService does not already implement this service itself.

    Methods declared in class BeanContextSupport

    add, addAll, addBeanContextMembershipListener, avoidingGui, bcsChildren, childDeserializedHook, childJustAddedHook, classEquals, clear, contains, containsAll, containsKey, copyChildren, deserialize, dontUseGui, fireChildrenAdded, fireChildrenRemoved, getBeanContextPeer, getChildBeanContextChild, getChildBeanContextMembershipListener, getChildPropertyChangeListener, getChildSerializable, getChildVetoableChangeListener, getChildVisibility, getLocale, getResource, getResourceAsStream, instantiateChild, isDesignTime, isEmpty, isSerializing, iterator, needsGui, okToUseGui, propertyChange, readChildren, remove, remove, removeAll, removeBeanContextMembershipListener, retainAll, serialize, setDesignTime, setLocale, size, toArray, toArray, validatePendingAdd, validatePendingRemove, vetoableChange, writeChildren
    Modifier and Type
    Method
    Description
    boolean
    add(Object targetChild)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Adds/nests a child within this BeanContext.
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    add Collection to set of Children (Unsupported) implementations must synchronized on the hierarchy lock and "children" protected field
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Adds a BeanContextMembershipListener
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Used to determine if the BeanContext child is avoiding using its GUI.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns an iterator of all children of this BeanContext.
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Called by readObject with the newly deserialized child and BCSChild.
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    subclasses may override this method to simply extend add() semantics after the child has been added and before the event notification has occurred.
    protected static final boolean
    classEquals(Class<?> first, Class<?> second)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Tests to see if two class objects, or their names are equal.
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    clear the children (Unsupported) implementations must synchronized on the hierarchy lock and "children" protected field
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Determines whether or not the specified object is currently a child of this BeanContext.
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Tests to see if all objects in the specified Collection are children of this BeanContext.
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Determines whether or not the specified object is currently a child of this BeanContext.
    protected final Object[]
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets a copy of the this BeanContext's children.
    protected final void
    Deprecated, for removal: This API element is subject to removal in a future version.
    used by readObject to deserialize a collection.
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    notify this instance that it may no longer render a GUI.
    protected final void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Fire a BeanContextMembershipEvent on the BeanContextMembershipListener interface
    protected final void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Fire a BeanContextMembershipEvent on the BeanContextMembershipListener interface
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the instance of BeanContext that this object is providing the implementation for.
    protected static final BeanContextChild
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the BeanContextChild (if any) of the specified child
    protected static final BeanContextMembershipListener
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the BeanContextMembershipListener (if any) of the specified child
    protected static final PropertyChangeListener
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the PropertyChangeListener (if any) of the specified child
    protected static final Serializable
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the Serializable (if any) associated with the specified Child
    protected static final VetoableChangeListener
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the VetoableChangeListener (if any) of the specified child
    protected static final Visibility
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the Component (if any) associated with the specified child.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the locale for this BeanContext.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Analogous to java.lang.ClassLoader.getResource(), this method allows a BeanContext implementation to interpose behavior between the child Component and underlying ClassLoader.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Analogous to java.lang.ClassLoader.getResourceAsStream(), this method allows a BeanContext implementation to interpose behavior between the child Component and underlying ClassLoader.
    Deprecated, for removal: This API element is subject to removal in a future version.
    The instantiateChild method is a convenience hook in BeanContext to simplify the task of instantiating a Bean, nested, into a BeanContext.
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Reports whether or not this object is in currently in design time mode.
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Reports whether or not this BeanContext is empty.
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Is this BeanContext in the process of being serialized?
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets all JavaBean or BeanContext instances currently nested in this BeanContext.
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    This method is typically called from the environment in order to determine if the implementor "needs" a GUI.
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Notify this instance that it may now render a GUI
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    subclasses may envelope to monitor child property changes.
    final void
    Deprecated, for removal: This API element is subject to removal in a future version.
    When an instance of this class is used as a delegate for the implementation of the BeanContext protocols (and its subprotocols) there exists a 'chicken and egg' problem during deserialization
    boolean
    remove(Object targetChild)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Removes a child from this BeanContext.
    protected boolean
    remove(Object targetChild, boolean callChildSetBC)
    Deprecated, for removal: This API element is subject to removal in a future version.
    internal remove used when removal caused by unexpected setBeanContext or by remove() invocation.
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    remove all specified children (Unsupported) implementations must synchronized on the hierarchy lock and "children" protected field
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Removes a BeanContextMembershipListener
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    retain only specified children (Unsupported) implementations must synchronized on the hierarchy lock and "children" protected field
    protected final void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Used by writeObject to serialize a Collection.
    void
    setDesignTime(boolean dTime)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Sets the new design time value for this BeanContext.
    void
    setLocale(Locale newLocale)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Sets the locale of this BeanContext.
    int
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the number of children currently nested in this BeanContext.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets all JavaBean or BeanContext instances currently nested in this BeanContext.
    toArray(Object[] arry)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets an array containing all children of this BeanContext that match the types contained in arry.
    protected boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Subclasses of this class may override, or envelope, this method to add validation behavior for the BeanContext to examine child objects immediately prior to their being added to the BeanContext.
    protected boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Subclasses of this class may override, or envelope, this method to add validation behavior for the BeanContext to examine child objects immediately prior to their being removed from the BeanContext.
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    subclasses may envelope to monitor veto child property changes.
    final void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Used to serialize all children of this BeanContext.

    Methods declared in class BeanContextChildSupport

    addPropertyChangeListener, addVetoableChangeListener, firePropertyChange, fireVetoableChange, getBeanContext, getBeanContextChildPeer, isDelegated, removePropertyChangeListener, removeVetoableChangeListener, setBeanContext, validatePendingSetBeanContext
    Modifier and Type
    Method
    Description
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Add a PropertyChangeListener for a specific property.
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Add a VetoableChangeListener for a specific property.
    void
    firePropertyChange(String name, Object oldValue, Object newValue)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Report a bound property update to any registered listeners.
    void
    fireVetoableChange(String name, Object oldValue, Object newValue)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Report a vetoable property update to any registered listeners.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the nesting BeanContext for this BeanContextChildSupport.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Gets the BeanContextChild associated with this BeanContextChildSupport.
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Reports whether or not this class is a delegate of another.
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Remove a PropertyChangeListener for a specific property.
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Removes a VetoableChangeListener.
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Sets the BeanContext for this BeanContextChildSupport.
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Called from setBeanContext to validate (or otherwise) the pending change in the nesting BeanContext property value.

    Methods declared in class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    Modifier and Type
    Method
    Description
    protected Object
    Creates and returns a copy of this object.
    boolean
    Indicates whether some other object is "equal to" this one.
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Finalization is deprecated and subject to removal in a future release.
    final Class<?>
    Returns the runtime class of this Object.
    int
    Returns a hash code value for this object.
    final void
    Wakes up a single thread that is waiting on this object's monitor.
    final void
    Wakes up all threads that are waiting on this object's monitor.
    Returns a string representation of the object.
    final void
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.
    final void
    wait(long timeoutMillis)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
    final void
    wait(long timeoutMillis, int nanos)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

    Methods declared in interface Collection

    equals, hashCode, parallelStream, removeIf, spliterator, stream, toArray
    Modifier and Type
    Method
    Description
    boolean
    Compares the specified object with this collection for equality.
    int
    Returns the hash code value for this collection.
    default Stream
    Returns a possibly parallel Stream with this collection as its source.
    default boolean
    Removes all of the elements of this collection that satisfy the given predicate (optional operation).
    default Spliterator
    Creates a Spliterator over the elements in this collection.
    default Stream
    Returns a sequential Stream with this collection as its source.
    default <T> Object[]
    toArray(IntFunction generator)
    Returns an array containing all of the elements in this collection, using the provided generator function to allocate the returned array.

    Methods declared in interface Iterable

    forEach
    Modifier and Type
    Method
    Description
    default void
    forEach(Consumer action)
    Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.
  • Field Details

    • services

      Deprecated, for removal: This API element is subject to removal in a future version.
      all accesses to the protected transient HashMap services field should be synchronized on that object
    • serializable

      protected transient int serializable
      Deprecated, for removal: This API element is subject to removal in a future version.
      The number of instances of a serializable BeanContextServceProvider.
    • proxy

      Deprecated, for removal: This API element is subject to removal in a future version.
      Delegate for the BeanContextServiceProvider.
    • bcsListeners

      protected transient ArrayList<BeanContextServicesListener> bcsListeners
      Deprecated, for removal: This API element is subject to removal in a future version.
      List of BeanContextServicesListener objects.
  • Constructor Details

    • BeanContextServicesSupport

      public BeanContextServicesSupport(BeanContextServices peer, Locale lcle, boolean dTime, boolean visible)
      Deprecated, for removal: This API element is subject to removal in a future version.

      Construct a BeanContextServicesSupport instance

      Parameters:
      peer - The peer BeanContext we are supplying an implementation for, if null the this object is its own peer
      lcle - The current Locale for this BeanContext.
      dTime - The initial state, true if in design mode, false if runtime.
      visible - The initial visibility.
    • BeanContextServicesSupport

      public BeanContextServicesSupport(BeanContextServices peer, Locale lcle, boolean dtime)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Create an instance using the specified Locale and design mode.
      Parameters:
      peer - The peer BeanContext we are supplying an implementation for, if null the this object is its own peer
      lcle - The current Locale for this BeanContext.
      dtime - The initial state, true if in design mode, false if runtime.
    • BeanContextServicesSupport

      public BeanContextServicesSupport(BeanContextServices peer, Locale lcle)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Create an instance using the specified locale
      Parameters:
      peer - The peer BeanContext we are supplying an implementation for, if null the this object is its own peer
      lcle - The current Locale for this BeanContext.
    • BeanContextServicesSupport

      public BeanContextServicesSupport(BeanContextServices peer)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Create an instance with a peer
      Parameters:
      peer - The peer BeanContext we are supplying an implementation for, if null the this object is its own peer
    • BeanContextServicesSupport

      public BeanContextServicesSupport()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Create an instance that is not a delegate of another object
  • Method Details

    • initialize

      public void initialize()
      Deprecated, for removal: This API element is subject to removal in a future version.
      called by BeanContextSupport superclass during construction and deserialization to initialize subclass transient state. subclasses may envelope this method, but should not override it or call it directly.
      Overrides:
      initialize in class BeanContextSupport
    • getBeanContextServicesPeer

      public BeanContextServices getBeanContextServicesPeer()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Gets the BeanContextServices associated with this BeanContextServicesSupport.
      Returns:
      the instance of BeanContext this object is providing the implementation for.
    • createBCSChild

      protected BeanContextSupport.BCSChild createBCSChild(Object targetChild, Object peer)
      Deprecated, for removal: This API element is subject to removal in a future version.

      Subclasses can override this method to insert their own subclass of Child without having to override add() or the other Collection methods that add children to the set.

      Overrides:
      createBCSChild in class BeanContextSupport
      Parameters:
      targetChild - the child to create the Child on behalf of
      peer - the peer if the targetChild and peer are related by BeanContextProxy
      Returns:
      Subtype-specific subclass of Child without overriding collection methods
    • createBCSSServiceProvider

      protected BeanContextServicesSupport.BCSSServiceProvider createBCSSServiceProvider(Class<?> sc, BeanContextServiceProvider bcsp)
      Deprecated, for removal: This API element is subject to removal in a future version.
      subclasses can override this method to create new subclasses of BCSSServiceProvider without having to override addService() in order to instantiate.
      Parameters:
      sc - the class
      bcsp - the service provider
      Returns:
      a service provider without overriding addService()
    • addBeanContextServicesListener

      public void addBeanContextServicesListener(BeanContextServicesListener bcsl)
      Deprecated, for removal: This API element is subject to removal in a future version.
      add a BeanContextServicesListener
      Specified by:
      addBeanContextServicesListener in interface BeanContextServices
      Parameters:
      bcsl - the BeanContextServicesListener to add
      Throws:
      NullPointerException - if the argument is null
    • removeBeanContextServicesListener

      public void removeBeanContextServicesListener(BeanContextServicesListener bcsl)
      Deprecated, for removal: This API element is subject to removal in a future version.
      remove a BeanContextServicesListener
      Specified by:
      removeBeanContextServicesListener in interface BeanContextServices
      Parameters:
      bcsl - the BeanContextServicesListener to remove from this context
    • addService

      public boolean addService(Class<?> serviceClass, BeanContextServiceProvider bcsp)
      Deprecated, for removal: This API element is subject to removal in a future version.
      add a service
      Specified by:
      addService in interface BeanContextServices
      Parameters:
      serviceClass - the service class
      bcsp - the service provider
      Returns:
      true if the service was successful added, false otherwise
    • addService

      protected boolean addService(Class<?> serviceClass, BeanContextServiceProvider bcsp, boolean fireEvent)
      Deprecated, for removal: This API element is subject to removal in a future version.
      add a service
      Parameters:
      serviceClass - the service class
      bcsp - the service provider
      fireEvent - whether or not an event should be fired
      Returns:
      true if the service was successfully added
    • revokeService

      public void revokeService(Class<?> serviceClass, BeanContextServiceProvider bcsp, boolean revokeCurrentServicesNow)
      Deprecated, for removal: This API element is subject to removal in a future version.
      remove a service
      Specified by:
      revokeService in interface BeanContextServices
      Parameters:
      serviceClass - the service class
      bcsp - the service provider
      revokeCurrentServicesNow - whether or not to revoke the service
    • hasService

      public boolean hasService(Class<?> serviceClass)
      Deprecated, for removal: This API element is subject to removal in a future version.
      has a service, which may be delegated
      Specified by:
      hasService in interface BeanContextServices
      Parameters:
      serviceClass - the service in question
      Returns:
      true if the service is available
    • getService

      public Object getService(BeanContextChild child, Object requestor, Class<?> serviceClass, Object serviceSelector, BeanContextServiceRevokedListener bcsrl) throws TooManyListenersException
      Deprecated, for removal: This API element is subject to removal in a future version.
      obtain a service which may be delegated
      Specified by:
      getService in interface BeanContextServices
      Parameters:
      child - the BeanContextChild associated with this request
      requestor - the object requesting the service
      serviceClass - class of the requested service
      serviceSelector - the service dependent parameter
      bcsrl - the BeanContextServiceRevokedListener to notify if the service should later become revoked
      Returns:
      a reference to this context's named Service as requested or null
      Throws:
      TooManyListenersException - if there are too many listeners
    • releaseService

      public void releaseService(BeanContextChild child, Object requestor, Object service)
      Deprecated, for removal: This API element is subject to removal in a future version.
      release a service
      Specified by:
      releaseService in interface BeanContextServices
      Parameters:
      child - the BeanContextChild
      requestor - the requestor
      service - the service
    • getCurrentServiceClasses

      public Iterator<Object> getCurrentServiceClasses()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: BeanContextServices
      Gets the currently available services for this context.
      Specified by:
      getCurrentServiceClasses in interface BeanContextServices
      Returns:
      an iterator for all the currently registered service classes.
    • getCurrentServiceSelectors

      public Iterator<?> getCurrentServiceSelectors(Class<?> serviceClass)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Description copied from interface: BeanContextServices
      Gets the list of service dependent service parameters (Service Selectors) for the specified service, by calling getCurrentServiceSelectors() on the underlying BeanContextServiceProvider.
      Specified by:
      getCurrentServiceSelectors in interface BeanContextServices
      Parameters:
      serviceClass - the specified service
      Returns:
      an iterator for all the currently available service selectors (if any) available for the specified service.
    • serviceAvailable

      public void serviceAvailable(BeanContextServiceAvailableEvent bcssae)
      Deprecated, for removal: This API element is subject to removal in a future version.
      BeanContextServicesListener callback, propagates event to all currently registered listeners and BeanContextServices children, if this BeanContextService does not already implement this service itself. subclasses may override or envelope this method to implement their own propagation semantics.
      Specified by:
      serviceAvailable in interface BeanContextServicesListener
      Overrides:
      serviceAvailable in class BeanContextChildSupport
      Parameters:
      bcssae - The BeanContextServiceAvailableEvent fired as a result of a service becoming available
    • serviceRevoked

      public void serviceRevoked(BeanContextServiceRevokedEvent bcssre)
      Deprecated, for removal: This API element is subject to removal in a future version.
      BeanContextServicesListener callback, propagates event to all currently registered listeners and BeanContextServices children, if this BeanContextService does not already implement this service itself. subclasses may override or envelope this method to implement their own propagation semantics.
      Specified by:
      serviceRevoked in interface BeanContextServiceRevokedListener
      Overrides:
      serviceRevoked in class BeanContextChildSupport
      Parameters:
      bcssre - The BeanContextServiceRevokedEvent fired as a result of a service being revoked
    • getChildBeanContextServicesListener

      protected static final BeanContextServicesListener getChildBeanContextServicesListener(Object child)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Gets the BeanContextServicesListener (if any) of the specified child.
      Parameters:
      child - the specified child
      Returns:
      the BeanContextServicesListener (if any) of the specified child
    • childJustRemovedHook

      protected void childJustRemovedHook(Object child, BeanContextSupport.BCSChild bcsc)
      Deprecated, for removal: This API element is subject to removal in a future version.
      called from superclass child removal operations after a child has been successfully removed. called with child synchronized. This subclass uses this hook to immediately revoke any services being used by this child if it is a BeanContextChild. subclasses may envelope this method in order to implement their own child removal side-effects.
      Overrides:
      childJustRemovedHook in class BeanContextSupport
      Parameters:
      child - the child
      bcsc - the BCSChild
    • releaseBeanContextResources

      protected void releaseBeanContextResources()
      Deprecated, for removal: This API element is subject to removal in a future version.
      called from setBeanContext to notify a BeanContextChild to release resources obtained from the nesting BeanContext. This method revokes any services obtained from its parent. subclasses may envelope this method to implement their own semantics.
      Overrides:
      releaseBeanContextResources in class BeanContextChildSupport
    • initializeBeanContextResources

      protected void initializeBeanContextResources()
      Deprecated, for removal: This API element is subject to removal in a future version.
      called from setBeanContext to notify a BeanContextChild to allocate resources obtained from the nesting BeanContext. subclasses may envelope this method to implement their own semantics.
      Overrides:
      initializeBeanContextResources in class BeanContextChildSupport
    • fireServiceAdded

      protected final void fireServiceAdded(Class<?> serviceClass)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Fires a BeanContextServiceEvent notifying of a new service.
      Parameters:
      serviceClass - the service class
    • fireServiceAdded

      protected final void fireServiceAdded(BeanContextServiceAvailableEvent bcssae)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Fires a BeanContextServiceAvailableEvent indicating that a new service has become available.
      Parameters:
      bcssae - the BeanContextServiceAvailableEvent
    • fireServiceRevoked

      protected final void fireServiceRevoked(BeanContextServiceRevokedEvent bcsre)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Fires a BeanContextServiceEvent notifying of a service being revoked.
      Parameters:
      bcsre - the BeanContextServiceRevokedEvent
    • fireServiceRevoked

      protected final void fireServiceRevoked(Class<?> serviceClass, boolean revokeNow)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Fires a BeanContextServiceRevokedEvent indicating that a particular service is no longer available.
      Parameters:
      serviceClass - the service class
      revokeNow - whether or not the event should be revoked now
    • bcsPreSerializationHook

      protected void bcsPreSerializationHook(ObjectOutputStream oos) throws IOException
      Deprecated, for removal: This API element is subject to removal in a future version.
      called from BeanContextSupport writeObject before it serializes the children ... This class will serialize any Serializable BeanContextServiceProviders herein. subclasses may envelope this method to insert their own serialization processing that has to occur prior to serialization of the children
      Overrides:
      bcsPreSerializationHook in class BeanContextSupport
      Parameters:
      oos - the ObjectOutputStream to use during serialization
      Throws:
      IOException - if serialization failed
    • bcsPreDeserializationHook

      protected void bcsPreDeserializationHook(ObjectInputStream ois) throws IOException, ClassNotFoundException
      Deprecated, for removal: This API element is subject to removal in a future version.
      called from BeanContextSupport readObject before it deserializes the children ... This class will deserialize any Serializable BeanContextServiceProviders serialized earlier thus making them available to the children when they deserialized. subclasses may envelope this method to insert their own serialization processing that has to occur prior to serialization of the children
      Overrides:
      bcsPreDeserializationHook in class BeanContextSupport
      Parameters:
      ois - the ObjectInputStream to use during deserialization
      Throws:
      IOException - if deserialization failed
      ClassNotFoundException - if needed classes are not found