Class DefaultRouteManagerXml

    • Method Detail

      • store

        public Element store​(java.lang.Object o)
        Default implementation for storing the contents of a RouteManager.
        Parameters:
        o - Object to store, of type RouteManager
        Returns:
        Element containing the complete info
      • setStoreElementClass

        public void setStoreElementClass​(Element routes)
        Subclass provides implementation to create the correct top element, including the type information. Default implementation is to use the local class here.
        Parameters:
        routes - The top-level element being created
      • load

        public boolean load​(Element sharedRoutes,
                            Element perNodeRoutes)
        Create a RouteManager object of the correct class, then register and fill it.
        Specified by:
        load in interface XmlAdapter
        Overrides:
        load in class AbstractXmlAdapter
        Parameters:
        sharedRoutes - Top level Element to unpack.
        perNodeRoutes - Top-level XML element containing the private, single-node elements of the description
        Returns:
        true if successful
      • loadRoutes

        public void loadRoutes​(Element routes)
        Utility method to load the individual Route objects. If there's no additional info needed for a specific route type, invoke this with the parent of the set of Route elements.
        Parameters:
        routes - Element containing the Route elements to load.
      • replaceRouteManager

        protected void replaceRouteManager()
        Replace the current RouteManager, if there is one, with one newly created during a load operation. This is skipped if the present one is already of the right type.