001/*
002 * (C) Copyright 2010 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Nuxeo - initial API and implementation
016 */
017package org.nuxeo.ecm.platform.routing.api;
018
019/**
020 * @author <a href="mailto:arussel@nuxeo.com">Alexandre Russel</a>
021 * @deprecated since 5.9.2 - Use only routes of type 'graph'
022 */
023@Deprecated
024public class RouteTable {
025
026    protected DocumentRoute route;
027
028    protected int totalChildCount = 0;
029
030    protected int maxDepth = 0;
031
032    /**
033     * @param routeElementDocument
034     */
035    public RouteTable(DocumentRoute route) {
036        this.route = route;
037    }
038
039    /**
040     * @return
041     */
042    public int getMaxDepth() {
043        return maxDepth;
044    }
045
046    public void increaseTotalChildCount() {
047        totalChildCount++;
048    }
049
050    public int getTotalChildCount() {
051        return totalChildCount;
052    }
053
054    /**
055     * @param maxDepth
056     */
057    public void setMaxDepth(int maxDepth) {
058        this.maxDepth = maxDepth;
059    }
060
061}