Package com.abiquo.server.core.infrastructure.Rack

Examples of com.abiquo.server.core.infrastructure.Rack.VlanRange


        List<Integer> vlanIds = query.list();
        if (vlanIds.size() > 0)
        {
            int max = Collections.max(vlanIds);
            int min = Collections.min(vlanIds);
            return new VlanRange(min, max);
        }

        return new VlanRange(0, 0);
    }
View Full Code Here

TOP

Related Classes of com.abiquo.server.core.infrastructure.Rack.VlanRange

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.