001/**
002 * Copyright (c) 2014-2015 Digi International Inc.,
003 * All rights not expressly granted are reserved.
004 *
005 * This Source Code Form is subject to the terms of the Mozilla Public
006 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
007 * You can obtain one at http://mozilla.org/MPL/2.0/.
008 *
009 * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343
010 * =======================================================================
011 */
012package com.digi.xbee.api;
013
014/**
015 * This class represents a ZigBee Network.
016 *  
017 * <p>The network allows the discovery of remote devices in the same network 
018 * as the local one and stores them.</p>
019 * 
020 * @see DigiMeshNetwork
021 * @see DigiPointNetwork
022 * @see Raw802Network
023 * @see XBeeNetwork
024 */
025public class ZigBeeNetwork extends XBeeNetwork {
026
027        /**
028         * Instantiates a new ZigBee Network object.
029         * 
030         * @param device Local ZigBee device to get the network from.
031         * 
032         * @throws NullPointerException if {@code device == null}.
033         * 
034         * @see ZigBeeDevice
035         */
036        ZigBeeNetwork(ZigBeeDevice device) {
037                super(device);
038        }
039}