001/*
002 *   Licensed to the Apache Software Foundation (ASF) under one
003 *   or more contributor license agreements.  See the NOTICE file
004 *   distributed with this work for additional information
005 *   regarding copyright ownership.  The ASF licenses this file
006 *   to you under the Apache License, Version 2.0 (the
007 *   "License"); you may not use this file except in compliance
008 *   with the License.  You may obtain a copy of the License at
009 *
010 *     http://www.apache.org/licenses/LICENSE-2.0
011 *
012 *   Unless required by applicable law or agreed to in writing,
013 *   software distributed under the License is distributed on an
014 *   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 *   KIND, either express or implied.  See the License for the
016 *   specific language governing permissions and limitations
017 *   under the License.
018 *
019 */
020
021package org.apache.directory.server.core.api.partition;
022
023/**
024 *
025 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
026 */
027public class Subordinates
028{
029    /** The number of direct children */
030    long nbChildren = -1L;
031    
032    /** The number of subordinates */
033    long nbSubordinates = -1L;
034
035    /**
036     * @return the nbChildren
037     */
038    public long getNbChildren()
039    {
040        return nbChildren;
041    }
042
043    
044    /**
045     * @param nbChildren the nbChildren to set
046     */
047    public void setNbChildren( long nbChildren )
048    {
049        this.nbChildren = nbChildren;
050    }
051
052    
053    /**
054     * @return the nbSubordinates
055     */
056    public long getNbSubordinates()
057    {
058        return nbSubordinates;
059    }
060
061    
062    /**
063     * @param nbSubordinates the nbSubordinates to set
064     */
065    public void setNbSubordinates( long nbSubordinates )
066    {
067        this.nbSubordinates = nbSubordinates;
068    }
069    
070    
071    /**
072     * {@inheritDoc}
073     */
074    public String toString()
075    {
076        return "<NbChildren:" + nbChildren + ", nbSubordinates:" + nbSubordinates + ">";
077    }
078}