Interface RefContainer

All Superinterfaces:
org.jvnet.hk2.config.ConfigBeanProxy
All Known Subinterfaces:
Cluster, Config, Node, Server

public interface RefContainer extends org.jvnet.hk2.config.ConfigBeanProxy
An Application or Resource reference container object.
Author:
Jerome Dochez
  • Method Summary

    Modifier and Type
    Method
    Description
    List of all the applications that this instance is referencing.
    default List<String>
    Note: This method uses stream to process names, it is not just a getter.
    List of all the resources that this instance is referencing.
    default List<String>
    Note: This method uses stream to process names, it is not just a getter.

    Methods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy

    createChild, deepCopy, getParent, getParent
  • Method Details

    • getResourceRef

      List<ResourceRef> getResourceRef()
      List of all the resources that this instance is referencing.
      Returns:
      the list of resources references
    • getApplicationRef

      List<ApplicationRef> getApplicationRef()
      List of all the applications that this instance is referencing.
      Returns:
      the list of applications references.
    • getResourceRefNames

      default List<String> getResourceRefNames()
      Note: This method uses stream to process names, it is not just a getter.
      Returns:
      list of ResourceRef.getRef() retrieved from getResourceRef()
    • getApplicationRefNames

      default List<String> getApplicationRefNames()
      Note: This method uses stream to process names, it is not just a getter.
      Returns:
      list of ApplicationRef.getRef() retrieved from getApplicationRef()